UNPKG

node-esm-hmr

Version:

HMR for Node that actually works with Node's ESM (type:module in package.json or .mjs files)

17 lines (13 loc) 343 B
import hmr from '../../index.js'; hmr('./inSameDir.js', '.', (bar) => { bar.default('a', 'b'); bar.namedExport('a', 'b'); }); hmr('./nested/nestedExample.js', '.', (bar) => { bar.default('a', 'b'); bar.namedExport('a', 'b'); }); hmr('../exampleInParent.js', '.', (bar) => { bar.default('a', 'b'); bar.namedExport('a', 'b'); });