4.0.1 • Published 4 years ago

files-io v4.0.1

Weekly downloads
1,095
License
MIT
Repository
github
Last release
4 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

4 years ago

4.0.0

4 years ago

3.0.2

5 years ago

3.0.1

6 years ago

3.0.0

7 years ago

2.0.0

7 years ago

1.2.8

8 years ago

1.2.7

9 years ago

1.2.6

10 years ago

1.2.5

10 years ago

1.2.4

10 years ago

1.2.3

10 years ago

1.2.2

10 years ago

1.2.1

11 years ago

1.2.0

11 years ago

1.1.3

11 years ago

1.1.2

11 years ago

1.1.1

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago