Last active
April 24, 2023 01:33
-
-
Save mitchallen/ffb9c69d18052f3da81723c5128a74b4 to your computer and use it in GitHub Desktop.
a very simple hello world program in JavaScript
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
#!/usr/bin/env node | |
console.log("Hello world!") |
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": "hello", | |
"version": "1.0.0", | |
"// bin": "./hello.js", | |
"bin": { | |
"hello": "./hello.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment