Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nowsecure/frida-fs
Create a stream from a filesystem resource.
https://github.com/nowsecure/frida-fs
frida
Last synced: 9 days ago
JSON representation
Create a stream from a filesystem resource.
- Host: GitHub
- URL: https://github.com/nowsecure/frida-fs
- Owner: nowsecure
- License: mit
- Created: 2016-06-07T13:28:44.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2023-06-26T12:03:50.000Z (over 1 year ago)
- Last Synced: 2024-10-27T05:15:57.821Z (12 days ago)
- Topics: frida
- Language: TypeScript
- Homepage:
- Size: 91.8 KB
- Stars: 45
- Watchers: 9
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-frida - frida-fs - Create a stream from a filesystem resource. (Libraries)
README
# frida-fs
Create a stream from a filesystem resource.
## Example
```js
const fs = require('frida-fs');fs.createReadStream('/etc/hosts').pipe(networkStream);
``````js
const fs = require('frida-fs');for (const elm of fs.list("/proc/self/")) {
console.log(JSON.stringify(elm));
}console.log(fs.readFileSync("/etc/hosts"));
```