npm —l

    1. Usage: npm <command>
    2. where <command> is one of:
    3. access npm access public [<package>]
    4. npm access restricted [<package>]
    5. npm access grant <read-only|read-write> <scope:team> [<package>]
    6. npm access revoke <scope:team> [<package>]
    7. npm access ls-packages [<user>|<scope>|<scope:team>]
    8. npm access ls-collaborators [<package> [<user>]]
    9. npm access edit [<package>]
    10. adduser npm adduser [--registry=url] [--scope=@orgname] [--auth-type=legacy] [--always-auth]
    11. aliases: login, add-user
    12. bin npm bin [--global]
    13. bugs npm bugs [<pkgname>]
    14. alias: issues
    15. cache npm cache add <tarball file>
    16. npm cache add <folder>
    17. npm cache add <tarball url>
    18. npm cache add <git url>
    19. npm cache add <name>@<version>
    20. npm cache clean
    21. npm cache verify
    22. completion source <(npm completion)
    23. config npm config set <key> <value>
    24. npm config get [<key>]
    25. npm config delete <key>
    26. npm config list [--json]
    27. npm config edit
    28. npm set <key> <value>
    29. npm get [<key>]
    30. alias: c
    31. dedupe npm dedupe
    32. aliases: ddp, find-dupes
    33. deprecate npm deprecate <pkg>[@<version>] <message>
    34. dist-tag npm dist-tag add <pkg>@<version> [<tag>]
    35. npm dist-tag rm <pkg> <tag>
    36. npm dist-tag ls [<pkg>]
    37. alias: dist-tags
    38. docs npm docs <pkgname>
    39. npm docs .
    40. alias: home
    41. doctor npm doctor
    42. edit npm edit <pkg>[@<version>]
    43. explore npm explore <pkg> [ -- <command>]
    44. get npm get <key> <value> (See `npm config`)
    45. help
    46. help-search npm help-search <text>
    47. init npm init [--force|-f|--yes|-y]
    48. install
    49. npm install (with no args, in package dir)
    50. npm install [<@scope>/]<pkg>
    51. npm install [<@scope>/]<pkg>@<tag>
    52. npm install [<@scope>/]<pkg>@<version>
    53. npm install [<@scope>/]<pkg>@<version range>
    54. npm install <folder>
    55. npm install <tarball file>
    56. npm install <tarball url>
    57. npm install <git:// url>
    58. npm install <github username>/<github project>
    59. aliases: i, isntall, add
    60. common options: [--save-prod|--save-dev|--save-optional] [--save-exact] [--no-save]
    61. install-test
    62. npm install-test [args]
    63. Same args as `npm install`
    64. alias: it
    65. link npm link (in package dir)
    66. npm link [<@scope>/]<pkg>[@<version>]
    67. alias: ln
    68. logout npm logout [--registry=<url>] [--scope=<@scope>]
    69. ls npm ls [[<@scope>/]<pkg> ...]
    70. aliases: list, la, ll
    71. outdated npm outdated [[<@scope>/]<pkg> ...]
    72. owner npm owner add <user> [<@scope>/]<pkg>
    73. npm owner rm <user> [<@scope>/]<pkg>
    74. npm owner ls [<@scope>/]<pkg>
    75. alias: author
    76. pack npm pack [[<@scope>/]<pkg>...]
    77. ping npm ping
    78. ping registry
    79. prefix npm prefix [-g]
    80. prune npm prune [[<@scope>/]<pkg>...] [--production]
    81. publish npm publish [<tarball>|<folder>] [--tag <tag>] [--access <public|restricted>]
    82. Publishes '.' if no argument supplied
    83. Sets tag `latest` if no --tag specified
    84. rebuild npm rebuild [[<@scope>/<name>]...]
    85. alias: rb
    86. repo npm repo [<pkg>]
    87. restart npm restart [-- <args>]
    88. root npm root [-g]
    89. run-script npm run-script <command> [-- <args>...]
    90. aliases: run, rum
    91. search npm search [--long] [search terms ...]
    92. aliases: s, se, find
    93. set npm set <key> <value> (See `npm config`)
    94. shrinkwrap npm shrinkwrap
    95. star npm star [<pkg>...]
    96. npm unstar [<pkg>...]
    97. alias: unstar
    98. stars npm stars [<user>]
    99. start npm start [-- <args>]
    100. stop npm stop [-- <args>]
    101. team npm team create <scope:team>
    102. npm team destroy <scope:team>
    103. npm team add <scope:team> <user>
    104. npm team rm <scope:team> <user>
    105. npm team ls <scope>|<scope:team>
    106. npm team edit <scope:team>
    107. test npm test [-- <args>]
    108. aliases: tst, t
    109. uninstall npm uninstall [<@scope>/]<pkg>[@<version>]... [--save-prod|--save-dev|--save-optional] [--no-save]
    110. aliases: un, unlink, remove, rm, r
    111. unpublish npm unpublish [<@scope>/]<pkg>[@<version>]
    112. update npm update [-g] [<pkg>...]
    113. aliases: up, upgrade, udpate
    114. version npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease | from-git]
    115. (run in package dir)
    116. 'npm -v' or 'npm --version' to print npm version (5.4.2)
    117. 'npm view <pkg> version' to view a package's published version
    118. 'npm ls' to inspect current package/dependency versions
    119. view npm view [<@scope>/]<pkg>[@<version>] [<field>[.subfield]...]
    120. aliases: v, info, show
    121. whoami npm whoami [--registry <registry>]
    122. (just prints username according to given registry)
    123. npm <command> -h quick help on <command>
    124. npm -l display full usage info
    125. npm help <term> search for help on <term>
    126. npm help npm involved overview
    127. Specify configs in the ini-formatted file:
    128. /Users/a1/.npmrc
    129. or on the command line via: npm <command> --key value
    130. Config info can be viewed via: npm help config

    node —help

    1. Usage: node [options] [ -e script | script.js | - ] [arguments]
    2. node inspect script.js [arguments]
    3. Options:
    4. -v, --version print Node.js version
    5. -e, --eval script evaluate script
    6. -p, --print evaluate script and print result
    7. -c, --check syntax check script without executing
    8. -i, --interactive always enter the REPL even if stdin
    9. does not appear to be a terminal
    10. -r, --require module to preload (option can be repeated)
    11. - script read from stdin (default; interactive mode if a tty)
    12. --inspect[=[host:]port] activate inspector on host:port
    13. (default: 127.0.0.1:9229)
    14. --inspect-brk[=[host:]port]
    15. activate inspector on host:port
    16. and break at start of user script
    17. --inspect-port=[host:]port
    18. set host:port for inspector
    19. --no-deprecation silence deprecation warnings
    20. --trace-deprecation show stack traces on deprecations
    21. --throw-deprecation throw an exception on deprecations
    22. --pending-deprecation emit pending deprecation warnings
    23. --no-warnings silence all process warnings
    24. --napi-modules load N-API modules
    25. --abort-on-uncaught-exception
    26. aborting instead of exiting causes a
    27. core file to be generated for analysis
    28. --expose-http2 enable experimental HTTP2 support
    29. --trace-warnings show stack traces on process warnings
    30. --redirect-warnings=file
    31. write warnings to file instead of
    32. stderr
    33. --trace-sync-io show stack trace when use of sync IO
    34. is detected after the first tick
    35. --trace-events-enabled track trace events
    36. --trace-event-categories comma separated list of trace event
    37. categories to record
    38. --track-heap-objects track heap object allocations for heap snapshots
    39. --prof-process process v8 profiler output generated
    40. using --prof
    41. --zero-fill-buffers automatically zero-fill all newly allocated
    42. Buffer and SlowBuffer instances
    43. --v8-options print v8 command line options
    44. --v8-pool-size=num set v8's thread pool size
    45. --tls-cipher-list=val use an alternative default TLS cipher list
    46. --use-bundled-ca use bundled CA store (default)
    47. --use-openssl-ca use OpenSSL's default CA store
    48. --openssl-config=file load OpenSSL configuration from the
    49. specified file (overrides
    50. OPENSSL_CONF)
    51. --icu-data-dir=dir set ICU data load path to dir
    52. (overrides NODE_ICU_DATA)
    53. --preserve-symlinks preserve symbolic links when resolving
    54. --experimental-modules experimental ES Module support
    55. and caching modules
    56. Environment variables:
    57. NODE_DEBUG ','-separated list of core modules
    58. that should print debug information
    59. NODE_DISABLE_COLORS set to 1 to disable colors in the REPL
    60. NODE_EXTRA_CA_CERTS path to additional CA certificates
    61. file
    62. NODE_ICU_DATA data path for ICU (Intl object) data
    63. NODE_NO_WARNINGS set to 1 to silence process warnings
    64. NODE_OPTIONS set CLI options in the environment
    65. via a space-separated list
    66. NODE_PATH ':'-separated list of directories
    67. prefixed to the module search path
    68. NODE_REPL_HISTORY path to the persistent REPL history
    69. file
    70. NODE_REDIRECT_WARNINGS write warnings to path instead of
    71. stderr
    72. OPENSSL_CONF load OpenSSL configuration from file
    73. Documentation can be found at https://nodejs.org/