
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
file-agents
Advanced tools
The objetive of the repository is to provide classes to read and write with the same interface for Node and Web.
npm install file-agents
There are four "agents", two for Node and another two for web.
Web includes two subagents to allow support propietary implementation on Chromium
This package is distributed with support for MJS and CommonJS
List files:
// Import reader for web
import { WebReader } from 'file-agents';
// Instance reader
const webReader = new WebReader();
// List files
const files = await webReader.files();
console.log('Files: ', files);
Read from file:
// Import reader for web
import { WebReader } from 'file-agents';
// Instance reader
const webReader = new WebReader();
// List files
const files = await webReader.files();
// Select one, normally user select it
const [ file ] = files;
// Read some portion
const blob = await webReader.read({ start: 0, end: 15 }, file.uuid); // uuid is optional except first time
console.log('Blob: ', blob);
Read from file and write
import { WebReader, WebWriter } from 'file-agents';
// Instance reader
const webReader = new WebReader();
// List files
const files = await webReader.files();
// Select one, normally user select it
const [ file ] = files;
const { uuid, name, size } = file;
const webWriter = new WebWriter({ name, size });
const chunkSize = 1e+7; // 10Mb
// Start reading in a loop
let finished = false;
let cursor = 0;
while(!finished) {
const chunk = await webReader.read({ start: cursor, end: (cursor + chunkSize) }, uuid);
await webWriter.write(chunk, cursor);
cursor += chunk.size;
finished = cursor >= file.size;
}
webWriter.close();
List files:
// Import reader for node
import { NodeReader } from 'file-agents';
// Instance reader
const nodeReader = new NodeReader();
// List files
const files = await nodeReader.files();
console.log('Files: ', files);
Read from file:
// Import reader for node
import { NodeReader } from 'file-agents';
// Instance reader
const nodeReader = new NodeReader();
// List files
const files = await nodeReader.files();
// Select one, normally user select it
const [ file ] = files;
// Read some portion
const blob = await nodeReader.read({ start: 0, end: 15 }, file.uuid); // uuid is optional except first time
console.log('Blob: ', blob);
Read from file and write
import { NodeReader, NodeWriter } from 'file-agents';
// Instance reader
const nodeReader = new NodeReader();
// List files
const files = await nodeReader.files();
// Select one, normally user select it
const [ file ] = files;
const { uuid, name, size } = file;
const nodeWriter = new NodeWriter({ name });
const chunkSize = 1e+7; // 10Mb
// Start reading in a loop
let finished = false;
let cursor = 0;
while(!finished) {
const chunk = await nodeReader.read({ start: cursor, end: (cursor + chunkSize) }, uuid);
await nodeWriter.write(chunk, cursor);
cursor += chunk.size;
finished = cursor >= file.size;
}
nodeWriter.close();
Read from file and write using where param on write, allowing to reuse same instance
import { NodeReader, NodeWriter } from 'file-agents';
// Instance reader
const nodeReader = new NodeReader();
// List files
const files = await nodeReader.files();
// Select one, normally user select it
const [ file ] = files;
const { uuid, name, size } = file;
const nodeWriter = new NodeWriter();
const where = { file: name, path: './Downloads' };
const chunkSize = 1e+7; // 10Mb
// Start reading in a loop
let finished = false;
let cursor = 0;
while(!finished) {
const chunk = await nodeReader.read({ start: cursor, end: (cursor + chunkSize) }, uuid);
await nodeWriter.write(chunk, cursor);
cursor += chunk.size;
finished = cursor >= file.size;
}
// Using where param to close file
nodeWriter.close(where);
FAQs
Agents for reading and writing files in web and nodeJS
We found that file-agents demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.