Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/will123195/esm-3.0.19-breaking-change
https://github.com/will123195/esm-3.0.19-breaking-change
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/will123195/esm-3.0.19-breaking-change
- Owner: will123195
- Created: 2018-04-24T16:58:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-04-24T18:09:43.000Z (over 6 years ago)
- Last Synced: 2024-10-06T08:42:07.741Z (3 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# esm-3.0.19-breaking-change
Tested with Node v8.9.4
#### Behavior without esm
```js
node index.js// b.js has been loaded
```#### Behavior using [email protected]
```js
node -r esm index-esm.js// b.js has been loaded
```#### Behavior using [email protected]+
```js
node -r esm index-esm.js// b.js has been loaded
// b.js has been loaded
```Notice `b.js` is loaded twice!