Skip to content

Instantly share code, notes, and snippets.

@CodingItWrong
Last active June 28, 2017 18:39
Show Gist options
  • Select an option

  • Save CodingItWrong/9e97fc459fbeda8afc264b3be680911b to your computer and use it in GitHub Desktop.

Select an option

Save CodingItWrong/9e97fc459fbeda8afc264b3be680911b to your computer and use it in GitHub Desktop.
import/export in node
import message from './mymodule';
console.log(message);
<html>
<body>
View console for results, or run `node app.js`
<script src="app.js"></script>
</body>
</html>
export default "this is from a module";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment