标签:
Node.js? is a JavaScript runtime built on Chrome‘s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.
Node.js‘ package ecosystem, npm, is the largest ecosystem of open source libraries in the world.
Node是基于V8的js runtime.
Node.js的特点:
- 事件驱动
- 非阻塞IO
Node.js的包管理工具:NPM(node package manager),类比python,ruby的包管理工具。
使用brew来安装就可以了
brew install node
参考:http://www.tuicool.com/articles/UJNb2eJ
http://imweb.io/topic/57289aa78a0819f17b7d9d5e?utm_source=tuicool&utm_medium=referral
使用npm list 来查看npm的一些设置,可以看到对某个设置项,有set,get,edit,delete方法。
下面是在mac的上NPM设置项列表
标签:
原文地址:http://www.cnblogs.com/xilifeng/p/5538711.html