Skip to content

WebReflection/esm-iso

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Isomorphic ESM Loader

Resources

License

Stars

Watchers

Forks

Packages

No packages published