frida-fs

Create a stream from a filesystem resource

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
frida-fs
5.2.55 months ago7 years agoMinified + gzip package size for frida-fs in KB

Readme

frida-fs
Create a stream from a filesystem resource.

Example

const fs = require('frida-fs');

fs.createReadStream('/etc/hosts').pipe(networkStream);

const fs = require('frida-fs');

for (const elm of fs.list("/proc/self/")) {
  console.log(JSON.stringify(elm));
}

console.log(fs.readFileSync("/etc/hosts"));