leadvm
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

Script isolation and loader

Installation

npm i leadvm --save

Usage

  • Create script from string You can use it for configs, network packets, serialization format, etc. Function expression can be used as api endpoint, domain logic, etc. But you also can use any type of javascript expression inside the script
const leadvm = require('leadvm');
const ms = leadvm.createScript(`({ field: 'value' });`, {}, 'Example');
// const ms = leadvm.createScript(`(a, b) => a + b;`);
console.log(ms); // Output: { field: 'value' }
  • Read scripts from file You can read exact script from file. It will help you with code decomposition. The extension of the script may be any or may not be at all.
const leadvm = require('leadvm');
(async () => {
  const ms = await leadvm.readScript('./test/examples/simple.js');
  console.log(ms);
})();
// Output:
//   { field: 'value', add: [Function: add], sub: [Function: sub] }
  • Read scripts from folder Folder reading may be useful for api modules loading. By default it loads nested directories scripts too, you can change it by providing third parameter as false.
const leadvm = require('leadvm');
(async () => {
  const ms = await leadvm.readDir('./test/examples/readDir');
  console.log(ms);
})();
// Output:
//   {
//      simple: { field: 'value', add: [Function: add], sub: [Function: sub] },
//      deep: {
//        arrow: [Function: anonymous]
//      }
//   }
  • Nested modules scripts By default nested modules can't be required, to require them you must add access field in options:
const leadvm = require('leadvm');
(async () => {
  const sandbox = { console };
  sandbox.global = sandbox;
  const ms = await leadvm.execute(`module.exports = require('./examples/module.cjs');`, {
    type: 'cjs',
    dir: __dirname,
    context: leadvm.execute(Object.freeze(sandbox)),
    access: {
      // You can also use path to dir
      // [path.join(__dirname, 'examples']: true
      // NOTICE: Use it only with boolean value in this case
      [path.join(__dirname, 'examples', 'module.cjs')]: true,
      [path.join(__dirname, 'examples', 'module.nested.js')]: true,
    },
  });
  console.log(ms);
})();
// Output:
//    { name: 'module', value: 1, nested: { name: 'module.nested', value: 2 } }
  • Library substitution For example it can be use to provide custom fs module, with your strict methods
const leadvm = require('leadvm');
(async () => {
  const src = `
    const fs = require('fs');
    module.exports = {
      async useStub() {
        return new Promise((resolve) => {
          fs.readFile('name', (err,data) => {resolve(data);});
        });
      }
    };
  `;
  const ms = leadvm.execute(src, {
    access: {
      fs: {
        readFile(filename, callback) {
          callback(null, 'stub-content');
        },
      },
    },
    type: 'cjs',
  });
  const res = await ms.useStub();
  console.log(res);
})(); // Output: stub-content
  • Class script types
    • type: js Script execution returns last expression cjs Script execution returns all that module.exports includes
    • filename Stands for the name of the module, by default it's empty string
    • dir Stands for the name of the module directory, by default process.cwd()
    • npmIsolation Use it if you want to isolate your npm modules in vm context.
    • ctx Script execution closured context, by default it's clear that is why you can't use even setTimeout or setInterval.
    • access Contains absolute paths to nested modules or name of npm/origin libraries as keys, with stub-content or boolean values, by default you can't require nested modules.
import { Context, Script, ScriptOptions, RunningCodeOptions, BaseOptions } from 'node:vm';

type MODULE_TYPE = 'js' | 'cjs';
type TOptions<value> = { [key: string]: value };

interface VMScriptOptions extends BaseOptions {
  dir?: string;
  filename?: string;
  type?: MODULE_TYPE;
  access?: TOptions<boolean | object>;
  ctx?: Context;
  npmIsolation?: boolean;
  run?: RunningCodeOptions;
  script?: ScriptOptions;
}

Copyright & contributors

Copyright © 2023 Leadfisher contributors. Leadvm is MIT licensed license.
Leadvm is one of leadfisher solutions.

Package Sidebar

Install

npm i leadvm

Weekly Downloads

0

Version

2.0.0

License

MIT

Unpacked Size

13.2 kB

Total Files

9

Last publish

Collaborators

  • sashapop10