Rudimentary fs.js and module.js patches to allow loading files from an atom/asar archive
npm install asar-fsA rudimentary fs and module monkeypatch to support loading files and modules from an atom/asar archive.
npm i asar-fs`Usage
Example:
`javascript
const AsarFs = require('asar-fs');
let asarFs = new AsarFs(__dirname + '/app.asar').patch();
`$3
This initializes the asar-fs instance, and will bind to the specified archive.$3
This will monkeypatch built-in modules for asar reading capabilities. Modules can be `require``d from the archive, as well as fs readFile and readFileSync access.