🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

async-load-module

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-load-module

Load CommonJs modules asynchronously, and without caching them

1.0.0
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

aync-load-module

Load CommonJs modules asynchronously, and without caching them.

Usage

const asyncLoadModule = require( 'async-load-module' );
const isEqual         = require( 'lodash/isEqual' );
const pkg             = require( './package.json' );

ascynLoadModule( 'package.json', ( err, result )=>{

  assert( !err );
  console.log( `Logically equal: ${ isEqual( pkg, result.module ) }` );

  // output
  // Logically equal: true

} );

Motivation

I needed a way to temporarily load previously validated user code on the server. To do this within a streaming pipeline I needed an async way to do so. This utility provides the facilities to do just that, relying on CommonJs module.exports syntax for scripts, while also providing support for JSON files.

FAQs

Package last updated on 26 Jun 2017

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