0.1.2 • Published 5 years ago

@chriscalo/file v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@chriscalo/file

DEPRECATED. See ez-file

No fuss utility for fetching the contents of a file.

Installation:

npm install @chriscalo/file
# or
yarn add @chriscalo/file

Works for relative paths, absolute paths, and module paths (node_modules folder).

Usage:

const { file } = require("@chriscalo/file");

const contents1 = file("./relative/path/to/file.txt");
const contents2 = file("/absolute/path/to/file.txt");
const contents3 = file("module/path/to/file.txt");
const contents4 = file("./path/to/file.txt", {
  // override options passed to fs.readFileSync()
  encoding: "base64", // defaults to "utf-8"
});
0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago