Last active
June 28, 2017 18:39
-
-
Save CodingItWrong/9e97fc459fbeda8afc264b3be680911b to your computer and use it in GitHub Desktop.
import/export in node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import message from './mymodule'; | |
| console.log(message); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <body> | |
| View console for results, or run `node app.js` | |
| <script src="app.js"></script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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