Socket
Book a DemoInstallSign in
Socket

load-engine

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

load-engine

Loads npm modules on demand (providing `npm` is installed globally)

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Build Status

load-engine

Load in engines for transformers asyncronously. This can also be used to load other npm modules.

Usage

var load = require('load-engine');

load(['marked', 'supermarked', 'markdown-js', 'markdown'], function (err, res) {
  if (err) throw err;
  assert(Array.isArray(res));
  assert(res.length === 1);
  assert(res[0] === require('marked'));
});

Results in

You must install one of the following:
  1) "marked"
  2) "supermarked"
  3) "markdown-js"
  4) "markdown"
type the number of the module to install or press enter to cancel: 

And the assertion passes if the user types 1.

load([['foo', 'bar']], function (err, res) {
  if (err) throw err;
  assert(Array.isArray(res));
  assert(res.length === 2);
  assert(res[0] === require('foo'));
  assert(res[1] === require('bar'));
});

Results in

Do you wish to install ["foo","bar"]? (yes)

And the assertions pass if the user presses enter, types y, types ye or types yes.

FAQs

Package last updated on 03 Feb 2013

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