参考资料
网上普遍都是命令行的使用入门教程, 对于各种概念不解释,好不容易找到一个国外的:https://www.sitepoint.com/beg...
但是国内因为墙的问题, 连不上服务器, 所以还需要一个国内镜像:http://ju.outofmemory.cn/entr...
NPM是啥
基于Nodejs运行
软件模块管理工具(软件包工具), 对应我这个Javaer来说,有点类似于Maven
现在普遍用于web前端项目的管理, 主要是各种依赖库的管理
命令行形式运行
安装
安装Node
速度非常快,完全不像国外的网站
windows, linux, 32/65bit, 各个版本齐全
验证成功:
node --versionNode命令的语法跟通常有点不同, 首先,参数都是加两个-的, 其次, 命令以.开头,比如:
$ node > console.log('Node is running'); Node is running > .help .break Sometimes you get stuck, this gets you out .clear Alias for .break .exit Exit the repl .help Show repl options .load Load JS from a file into the REPL session .save Save all evaluated commands in this REPL session to a file> .exit
安装NPM
Node装完以后, npm连带着就装上了, 可以直接验证
$ npm --version
安装软件包
教程里关于默认位置和参数的修改,就直接跳过了, 先尝试使用
先尝试简单的安装
npm install uglify-js --global发现默认源安装好慢,简直无法容忍,还是换一个吧,淘宝有国内镜像:
https://npm.taobao.org/
安装方式:
npm install -g cnpm --registry=https://registry.npm.taobao.org
以后就使用cnpm来代替npm了再次尝试原来的命令
cnpm install uglify-js --global
迅速完成本地安装: npm最好的地方在于, 缺省情况下(不带--global参数), 是安装到本地文件夹的.
npm install underscore查看本地安装包: npm list
发现cnpm不是万能的, 刚才的underscore就,没有, 拿Vue来练手倒是成功了
npm install vue
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。