Socket
Book a DemoInstallSign in
Socket

frida-fs

Package Overview
Dependencies
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frida-fs

Create a stream from a filesystem resource

latest
Source
npmnpm
Version
7.0.0
Version published
Maintainers
2
Created
Source

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

FAQs

Package last updated on 22 May 2025

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