Skip to content

Instantly share code, notes, and snippets.

@kawanet
Created May 21, 2015 10:57
Show Gist options
  • Select an option

  • Save kawanet/a35dd7139c64b3e32ffb to your computer and use it in GitHub Desktop.

Select an option

Save kawanet/a35dd7139c64b3e32ffb to your computer and use it in GitHub Desktop.
node.js のライブラリに CLI 版を内蔵させる場合の引数の渡し方
#!/usr/bin/env node
if (!module.parent) CLI.apply(null, Array.prototype.slice.call(process.argv, 2));
function CLI(arg1, arg2) {
//
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment