made with esnextbin
Created
November 15, 2018 13:58
-
-
Save voronianski/291d44adc08ed366f77acf84f4a6d01d to your computer and use it in GitHub Desktop.
test new container
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ESNextbin Sketch</title> | |
<!-- put additional styles and scripts here --> | |
</head> | |
<body> | |
<!-- put markup and other contents here --> | |
</body> | |
</html> |
This file contains 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
// write ES2015 code and import modules from npm | |
// and then press "Execute" to run your program | |
console.log("test2"); | |
const noop = require("nooop"); | |
console.log(noop); |
This file contains 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
{ | |
"name": "esnextbin-sketch-with-description", | |
"description": "test new container", | |
"version": "1.0.0", | |
"dependencies": { | |
"nooop": "1.0.0" | |
} | |
} |
This file contains 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
"use strict"; | |
// write ES2015 code and import modules from npm | |
// and then press "Execute" to run your program | |
console.log("test2"); | |
var noop = require("nooop"); | |
console.log(noop); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment