Created
May 21, 2015 10:57
-
-
Save kawanet/a35dd7139c64b3e32ffb to your computer and use it in GitHub Desktop.
node.js のライブラリに CLI 版を内蔵させる場合の引数の渡し方
This file contains hidden or 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 | |
| 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