bload
v0.0.1
Published
Load bytecode modules from standalone Node.js executables
Downloads
5
Readme
bload
Load bytecode modules from standalone Node.js executable.
Installation
npm install bload
Usage
const path = require('node:path');
const { load } = require('bload');
// Path to your *.jsc module
const modulePath = path.join(__dirname, `script-${process.platform}.jsc`);
module.exports = load(modulePath);