4.0.1 • Published 3 years ago

files-io v4.0.1

Weekly downloads
1,095
License
MIT
Repository
github
Last release
3 years ago

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

4.0.1

3 years ago

4.0.0

3 years ago

3.0.2

4 years ago

3.0.1

5 years ago

3.0.0

6 years ago

2.0.0

6 years ago

1.2.8

7 years ago

1.2.7

8 years ago

1.2.6

9 years ago

1.2.5

9 years ago

1.2.4

9 years ago

1.2.3

9 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago