New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
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
  • Socket score

Version published
Maintainers
1
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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc