本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
zysnba - xiangjie88
- sgqt
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wallimn
- wy_19921005
- vipbooks
- benladeng5225
- 龙儿筝
- javashop
- ranbuijj
- fantaxy025025
- zw7534313
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- jh108020
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- lemonhandsome
- jbosscn
- zxq_2017
- mengjichen
- luxurioust
- lzyfn123
- forestqqqq
- nychen2000
- wjianwei666
- Xeden
- zhanjia
- ajinn
- hanbaohong
- 喧嚣求静
- jickcai
- kingwell.leng
- mwhgJava
- silverend
- lich0079
- lchb139128
最新文章列表
npm设置代理
npm如何设置代理:
npm config set registry *****
npm config ls -l 可以查看npm的所有配置
更多参考:
http://www.cnblogs.com/huang0925/archive/2013/05/17/3083207.html
Node.js开发指南阅读总结-01
1、REPL模式$ node -e "console.log('hello')" //REPL(read-eval-print loop[输出-求值-输出循环])模式。
2、脚本的文件名不一定非要用.js,用.js是一种约定。
3、建立http服务器
var http = require('http');//获取http内置服务
function server(requ ...
npm config the proxy
Using Npm Behind a Corporate Proxy
npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080
If you need to specify credentials, they can be passed i ...
NodeJS Socket.io
为什么需要socket.io?
node.js提供了高效的服务端运行环境,但是由于浏览器端对HTML5的支持不一,为了兼容所有浏览器,提供卓越的实时的用户体验,并且为程序员提供客户端与服务端一致的编程体验,于是socket.io诞生。
socket.io设计的目标是支持任何的浏览器,任何Mobile设备。目前支持主流的PC浏览器 (IE,Safari,Chrome,Firef ...
nodejs npm命令
npm install <name>安装nodejs的依赖包
例如npm install express 就会默认安装express的最新版本,也可以通过在后面加版本号的方式安装指定版本,如npm install express@3.0.6
npm install <name> -g 将包安装到全局环境中
但是代码中,直接通过require()的方式是没有办法调用全 ...
npm命令整理集合
本文收集一些npm的命令:
核心内容来自:https://npmjs.org/doc/
adduser
增加一个用户: 会填入username,password,email
npm adduser
i | install
npm install (with no args in a package dir)
...
Chapter 1. The Setup
1. The Node Package Manager (NPM) allows you to easily manage modules in projects by downloading packages, resolving dependencies, running tests, and installing command-line utilities.
2. NPM ...
压缩工具之Uglifyjs
Uglifyjs
其实是为node.js准备的,需要在node.js环境才能使用,当然也有一些在线版本的服务。
如何安装:
npm install uglify-js -g
注释 : @note by yaochun 11-27
目前已经有UglifyJS2了,但是直接用新的去压缩以前的代码会有很多 ...
NPM 无法正常安装
错误:
npm http GET https://registry.npmjs.org/supervisor
npm ERR! Error: failed to fetch from registry: supervisor
npm ERR! at /usr/share/npm/lib/utils/npm-registry-client/get.js:139:12
...
Nodejs为代理npm设置代理
为npm设在代理
npm config set proxy="http://192.168.1.1:8080"
为npm默认选择http方式,不选用https
npm config set registry http://registry.npmjs.org