5.0.0 • Published 2 months ago

@boost/module v5.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Modules - Boost

build status npm version

Load and resolve custom file types at runtime with a more powerful Node.js require replacement.

import { requireModule } from '@boost/module';

const result = requireModule('./some/non-js/file.ts');

Or with next-generation Node.js hooks.

node --import @boost/module/register ./path/to/entry-point.mjs

Features

  • CommonJS based importing with requireModule()
  • CommonJS interoperability with ESM-like files
  • ECMAScript module based importing with a custom Node.js hook
  • Supported file types: TypeScript

Installation

yarn add @boost/module

Documentation