Skip to content

Instantly share code, notes, and snippets.

@cblanquera
Created September 10, 2019 07:55
Show Gist options
  • Save cblanquera/543f11ff6eee8855cd4ae329e80c4893 to your computer and use it in GitHub Desktop.
Save cblanquera/543f11ff6eee8855cd4ae329e80c4893 to your computer and use it in GitHub Desktop.
ES6 + Node import always ran first
console.log('bar')
$ node --experimental-modules foo.mjs
console.log('foo')
import './bar.mjs'
@cblanquera
Copy link
Author

Results:

bar
foo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment