New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

file-agents

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

file-agents

Agents for reading and writing files in web and nodeJS

latest
Source
npmnpm
Version
1.8.1
Version published
Maintainers
1
Created
Source

File Agents NPM Downloads

The objetive of the repository is to provide classes to read and write with the same interface for Node and Web.

NPM installation

npm install file-agents

Description

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

Examples

Web

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();

Node

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);

Keywords

typescript

FAQs

Package last updated on 09 Nov 2023

Did you know?

Socket

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.

Install

Related posts