esm-iso

0.0.6 • Public • Published

esm-iso

An esm companion for isomorphic JS modules.

node -r esm -r esm-iso server.js

Examples

Try out the live demo with its example code.

The summary is explained in here:

import path from 'path';
import express from 'express';
 
// used to redirect client calls
const redirect = Object.assign(
  Object.create(null),
  {
    // import * from '/m/generic';
    // =>
    // import * from '/m/detailed/path/esm/index.js';
    'generic': 'detailed/path/esm/index.js'
  }
);
 
const app = express();
app.use('/m/', (req, res, next) => {
  const mod = req.url.replace(/\?[\S\s]*$/, '').replace(/^\/|\/$/g, '');
  if (mod in redirect) res.redirect('/m/' + redirect[mod]);
  else next();
});
app.use('/m/', express.static(
  // that's it: your browser can now load any module
  path.join(__dirname, 'node_modules')
));
 
import module from '/m/generic';
module.log('🎉');

You can use similar approach to also load any other module file:

<script src="/m/generic/min.js"></script>

Alternatives

If you want a more explicit version that uses /node_modules/ instead of /m/ as both client and server loader, you can check slash-node-modules-loader out: same loader, but with a more semantic absolute path.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.6
    0
    • latest

Version History

Package Sidebar

Install

npm i esm-iso

Weekly Downloads

0

Version

0.0.6

License

ISC

Unpacked Size

2.93 kB

Total Files

4

Last publish

Collaborators

  • webreflection