All Projects → coderaiser → files-io

coderaiser / files-io

Licence: MIT license
Read many files with node

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to files-io

easy reader
⏮ ⏯ ⏭ A Rust library for easily navigating forward, backward or randomly through the lines of huge files.
Stars: ✭ 83 (+336.84%)
Mutual labels:  files, read
pv
Unix Pipe Viewer (pv) utility in Node.js
Stars: ✭ 20 (+5.26%)
Mutual labels:  stream, pipe
lwt-pipe
[beta] A multi-consumer, multi-producers blocking queue and stream for Lwt
Stars: ✭ 30 (+57.89%)
Mutual labels:  stream, pipe
prox
A Scala library for working with system processes
Stars: ✭ 93 (+389.47%)
Mutual labels:  stream, pipe
tpack
Pack a Go workflow/function as a Unix-style pipeline command
Stars: ✭ 55 (+189.47%)
Mutual labels:  stream, pipe
dirdf
R package: dirdf - Extracts Metadata from Directory and File Names
Stars: ✭ 57 (+200%)
Mutual labels:  files
Flutter-Chat-Application
Realtime Chat application using stream and linking with firebase firestore database build using flutter and firebase
Stars: ✭ 33 (+73.68%)
Mutual labels:  stream
eec
A fast and lower memory excel write/read tool.一个非POI底层,支持流式处理的高效且超低内存的Excel读写工具
Stars: ✭ 93 (+389.47%)
Mutual labels:  stream
lumen-file-manager
File manager module for the Lumen PHP framework.
Stars: ✭ 40 (+110.53%)
Mutual labels:  files
metacom
RPC communication protocol for Metarhia stack 🔌
Stars: ✭ 42 (+121.05%)
Mutual labels:  stream
watsor
Object detection for video surveillance
Stars: ✭ 203 (+968.42%)
Mutual labels:  stream
nucked-truth-of-files
HollyJS Moscow
Stars: ✭ 14 (-26.32%)
Mutual labels:  files
docker-Kinesis-local
Docker build for AWS Kinesis local
Stars: ✭ 43 (+126.32%)
Mutual labels:  stream
go-streams
Stream Collections for Go. Inspired in Java 8 Streams and .NET Linq
Stars: ✭ 127 (+568.42%)
Mutual labels:  stream
pypely
Make your data processing easy
Stars: ✭ 17 (-10.53%)
Mutual labels:  pipe
PoReader
本地小说阅读器,支持深色模式,Wifi传书,代码简洁有注释(local text reader, support dark modal, upload text by wifi)
Stars: ✭ 41 (+115.79%)
Mutual labels:  read
yogurl
Serve files and code over HTTP in one command. The CLI for http://yogurl.io
Stars: ✭ 45 (+136.84%)
Mutual labels:  files
custer
macOS streaming radio in your menu bar
Stars: ✭ 17 (-10.53%)
Mutual labels:  stream
lwjson
Lightweight JSON parser for embedded systems
Stars: ✭ 66 (+247.37%)
Mutual labels:  stream
craft-youtubeliveembed
This plugin allows you to embed a YouTube live stream and/or live chat on your webpage
Stars: ✭ 14 (-26.32%)
Mutual labels:  stream

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].