@akindele1973/readf
v1.0.3
Published
Reduce hassles of reading and writing files with fs
Downloads
8
Readme
@akindele1973/readf
read files in a content and send the strings to a variable
Installation
# using npm
npm install @akindele1973/readf
# using yarn
yarn add @akindele1973/readf
Usage
# using require
const readf = require('@akindele1973/readf');
# using import
import readf from '@akindele1973/readf';
Example
Using in a script:
const readf = require("@akindele1973/readf");
const mytext= readf(filename);
console.log(mytext)