outil en ligne de commande avec node - Offirmo-team/wiki GitHub Wiki
Voir aussi ligne de commande, node.js
- https://github.com/sindresorhus/is-root
- https://github.com/sindresorhus/downgrade-root
- https://github.com/sindresorhus/sudo-block
- :-) https://github.com/sindresorhus/wallpaper
process.stdout.columns
- http://flatironjs.org + http://blog.nodejitsu.com/writing-cli-apps-with-flatiron
- https://github.com/sindresorhus/meow
- sindresorhus curated https://github.com/sindresorhus/awesome-nodejs#command-line-apps
- prettyjson
- https://github.com/sindresorhus/indent-string
- https://github.com/sindresorhus/cli-truncate
- https://github.com/sindresorhus/humanize-string
- https://github.com/sindresorhus/lpad
- column width https://github.com/sindresorhus/string-width
- when displaying files ! https://github.com/sindresorhus/tildify https://github.com/sindresorhus/untildify
fancy
- https://github.com/sindresorhus/boxen
- Elegant terminal spinner https://github.com/sindresorhus/ora
- https://github.com/sindresorhus/clear-cli
- https://github.com/sindresorhus/beeper
- https://github.com/sindresorhus/log-symbols
- https://github.com/sindresorhus/log-update pour animations
- https://github.com/sindresorhus/sparkly
- https://github.com/timoxley/columnify
- tty-table
- https://github.com/dominikwilkowski/cfonts
- https://github.com/samverschueren/listr
Langage naturel
- (en) Get superb like words https://github.com/sindresorhus/superb
- (en) Get yes/no like words https://github.com/sindresorhus/yes-no-words
- (en) parse truthy/falsy https://github.com/sindresorhus/yn
- https://github.com/sindresorhus/cat-names
- https://github.com/sindresorhus/dog-names
- https://github.com/sindresorhus/plur
- https://github.com/sindresorhus/pretty-bytes
- https://github.com/sindresorhus/pretty-ms
https://github.com/sindresorhus/get-emails
conf, cache
- https://github.com/sindresorhus/first-run
- https://github.com/sindresorhus/esc-exit
- https://github.com/sindresorhus/exit-hook
- sindre np
http://cruft.io/posts/node-command-line-utilities/
- https://github.com/visionmedia/commander.js/
- https://github.com/Marak/colors.js
- https://github.com/chevex/yargs
- https://github.com/f/omelette
- optimist
var argv = require('optimist')
.usage('Usage: $0 <config-file.js> [--browserName <string>] [--browserVersion <string>]')
.default('browserName', 'chrome')
.default('browserVersion', 'ANY')
.argv;