パッケージの詳細

input-from-file

JoshuaKGoldberg25.9kMIT0.5.4

create input that reads a file as text.

readme

input-from-file

Bingo input that reads a file as text.

🤝 Code of Conduct: Kept 📝 License: MIT 📦 npm version 💪 TypeScript: Strict

npm i input-from-file
import { inputFromFile } from "input-from-file";

await take(inputFromFile, { filePath: "data.txt" });

Options

inputFromFile takes a single argument, filePath, of type string.

It reads the filePath from disk and returns either:

  • Error: If an error was caught reading the file
  • string: The text contents of the file

See create.bingo > Templates > Concepts > Inputs for more documentation on Inputs.