Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeetiss/mjs-commonjs-default


https://github.com/jeetiss/mjs-commonjs-default

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

        

# mjs-commonjs-default

demo that shows difference in module resolution for `js` and `mjs` files.

## how to run

```bash
mjs-commonjs-default % node src/index.mjs
{ default: 42 }
mjs-commonjs-default % node dist/mjs.js
{ default: 42 }
mjs-commonjs-default % node dist/js.js
42
mjs-commonjs-default % node src/index.js
{ default: 42 }
```