编写环境及工具:
- windows 10 家庭中文版 1803
- node v10.7.0
检查 npm 安装
查看 npm 是否安装,可以查询其版本测试一下 。
c:\> npm -v
6.3.0
学习 npm
直接输入 npm
c:\> npm
Usage: npm <command> // 习惯用法
where <command> is one of: // 所有命令
access, adduser, audit, bin, bugs, c, cache, ci, cit,
completion, config, create, ddp, dedupe, deprecate,
dist-tag, docs, doctor, edit, explore, get, help,
help-search, hook, i, init, install, install-test, it, link,
list, ln, login, logout, ls, outdated, owner, pack, ping,
prefix, profile, prune, publish, rb, rebuild, repo, restart,
root, run, run-script, s, se, search, set, shrinkwrap, star,
stars, start, stop, t, team, test, token, tst, un,
uninstall, unpublish, unstar, up, update, v, version, view,
whoami
npm <command> -h quick help on <command>
npm -l display full usage info // 显示所有的命令信息
npm help <term> search for help on <term> // 查询命令帮助
npm help npm involved overview
Specify configs in the ini-formatted file:
C:\Users\user_name\.npmrc
or on the command line via: npm <command> --key value
Config info can be viewed via: npm help config
npm@6.3.0 D:\AEXE\nodejs\node_modules\npm
尝试查询所有的命令信息
c:\ > npm -l
access npm access public [<package>]
npm access restricted [<package>]
npm access grant <read-only|read-write> <scope:team> [<package>]
npm access revoke <scope:team> [<package>]
npm access ls-packages [<user>|<scope>|<scope:team>]
npm access ls-collaborators [<package> [<user>]]
npm access edit [<package>]
adduser npm adduser [--registry=url] [--scope=@orgname] [--auth-type=legacy] [--always-auth]
aliases: login, add-user
audit
npm audit [--json]
npm audit fix [--force|--package-lock-only|--dry-run|--production|--only=(dev|prod)]
.....
由此可以看到各个命令得用法。查看某个命令的方法,可以使用 help 查看。如查看安装模板的命令:
c:\> npm help install
输入后将会弹出一个网页,里面介绍关于 install 的相关信息。非常的详细。而且网页是安装时就已经存在电脑上了,查询方便。
后语
这里只是介绍自己的学习方法。并没有介绍太多关于 npm 的知识,想学习的深入,建议去看 官网学习 。
网友评论