files-io

4.0.1 • Public • Published

Files-io License NPM version Dependency Status Build Status Coverage Status

========

Read many files with node.

Install

npm i files-io --save

How to use?

const files = require('files-io');

const allData = await files.read(['README.md', 'package.json'], 'utf8');
console.log(allData);

/* Easy way to create pipe which would handle all error events */
const NameFrom = 'README.md';
const NameTo = 'README_COPY.gz';

await files.pipe(NameFrom, NameTo, {
    gzip: true,
});
/* join couple files and save them to new file with streams */
const fs = require('fs');
const NAME = 'Join';
const writeStream = fs.createWriteStream(NAME);

await files.readPipe(['README.md', 'package.json'], writeStream);

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i files-io

Weekly Downloads

265

Version

4.0.1

License

MIT

Unpacked Size

7.37 kB

Total Files

5

Last publish

Collaborators

  • coderaiser