Skip to content

Instantly share code, notes, and snippets.

@soomtong
Forked from junosuarez/index.js
Created June 21, 2019 01:32
Show Gist options
  • Save soomtong/e5a61ca2ee122a16e487a276ce53230e to your computer and use it in GitHub Desktop.
Save soomtong/e5a61ca2ee122a16e487a276ce53230e to your computer and use it in GitHub Desktop.
async cli app boilerplate
#!/usr/bin/env node
if (process.mainModule === module) setImmediate(() => main(process.argv).catch(e => console.log(e.stack) && process.exit(1)))
async function main(argv) {
console.log(argv.slice(2))
}
{"name":"boilerplate", "version":"0.0.0", "bin": "index.js"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment