Skip to content

Instantly share code, notes, and snippets.

@dpkg
Last active May 12, 2020 08:20
Show Gist options
  • Save dpkg/751f4415e8e27c6bd8e55e5e68a55737 to your computer and use it in GitHub Desktop.
Save dpkg/751f4415e8e27c6bd8e55e5e68a55737 to your computer and use it in GitHub Desktop.
simple-npm

A simple npm package, writes hello to the console.

#!/usr/bin/env node
const name = $NAME || 'world';
console.log('');
console.log('-------------');
console.log(`Hello, ${name}!`);
console.log('-------------');
console.log('');
{
"name": "simple-npm-hello-gist",
"version": "0.0.1",
"bin": "./index.js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment