nobind17
Version:
Next-gen binding framework for Node.js / Node-API
15 lines (12 loc) • 449 B
text/typescript
// These are the usual steps for importing a native Node.js
// module directly from TypeScript when it is transpiled to ES6
import { createRequire } from 'node:module';
const require = createRequire(import.meta.url);
const hello = require('./lib/example.node') as typeof import('./lib/example');
const r = hello.handleMonster({
name: 'Lamia',
eyes: 2,
feature: 'claws',
greeter: new hello.Hello('Lamia')
});
console.log('JS received', r);