New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

async-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-module

Allow use of await directly in node modules

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

async-module

This module allows to use await statements without being into an async function.

However, the execution of the await statements in the modules will be asynchronous.

Usage

// main.js
'use strict';
const Assert = require('assert');
require('async-module');
const mod = require('./module');

Assert(Object.keys(mod).length === 0);
console.log('Object.keys(mod).length === 0');

setTimeout(() => {
    Assert(Object.keys(mod).length === 1);
    console.log('Assert(Object.keys(mod).length === 1)');
    Assert(mod.message === 'hello world');
    console.log('Assert(mod.message === \'hello world\')');
});
// module.js
'use strict';
// this module contains an `await` statement outside of an async function.

const res = await Promise.resolve('hello world');
module.exports.message = res;

WARNING

This module is a prank PoC. It is not to be used in production, nor by anyone really.

It aims at showing that it is not because a hack is possible in the node core that it should be used.

FYI, the source code of the module has only 12 LOC:

'use strict';
const Module = require('module');

const wrapper = [
    '(async function (exports, require, module, __filename, __dirname) { ',
    '\n});'
];

Module.wrap = function (script) {

    return wrapper[0] + script + wrapper[1];
};

Please, never mess with the internals of Node.js like that unless you have a very good reason.

Keywords

FAQs

Package last updated on 28 Aug 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