npm.io
0.1.2 • Published 3 years ago

import-module-runtime

Licence
MIT
Version
0.1.2
Deps
0
Size
5 kB
Vulns
0
Weekly
0

import-module-runtime

Load typescript and ESM module in Node Runtime

Usage

// ./module.ts

export default 'Hello, world!'
// ./transform.ts
import { findNodeModule } from 'import-module-runtime'

const mod = findNodeModule(new URL('./module.ts'))

console.log(mod.exports.default)
// Hello, world!