node中文社区
Node.js专业中文社区:https://cnodejs.org/
node文档
node.js 中文api :http://nodeapi.ucdok.com/
node.js入门中文版: http://nodebeginner.org/index-zh-cn.html
node123-node.js中文资料导航:https://github.com/youyudehexie/node123
nodeJS的Web应用框架
express3.*中文API: http://expressjs.jser.us/
express4.*中文API: http://expressjs.jser.us/4x_zh-cn/api.html
koa 中文文档:
https://github.com/turingou/koa-guide
http://koajs.emptystack.net/
http://koajs.cn/
深入理解Express: http://xvfeng.me/posts/understanding-expressjs/
meteor中文文档:http://d0cs.meteor.com/
NodeJS 和 Socket.io 中文入门教程:http://t.cn/zOMwxCg
jade中文文档: http://expressjs.jser.us/jade.html
Juicer 中文文档:http://juicer.name/docs/docs_zh_cn.html
Mongoose 基本功能使用:http://t.cn/zOIKPeB
node博客blog教程系列:
Node.js 包教不包会 (alsotang) https://github.com/alsotang/node-lessons
让我们基于Node.js创建一个Web应用系列(5篇):http://t.cn/z8JnzkA
一周node.js系列(7篇) :http://t.cn/zOKuc9D
从零开始nodejs系列: http://blog.fens.me/series-nodejs/
一起学node.js (荐): http://t.cn/zHxNXXt
Node.js高级编程(荐): http://t.cn/zYmuqaH
深入浅出Node.js http://www.infoq.com/cn/master-nodejs
Node.js零起点开发:http://blog.csdn.net/kaosini/article/details/8084268
node.js入门(共13篇)http://www.cnblogs.com/softlover/category/406516.html
snoopyxdy的博客(大量node及express api的解读及进阶内容):http://t.cn/zQuKMKH
用node.js写web框架系列:http://my.oschina.net/Jeky/blog?catalog=262655
Luics的node.js系列: http://t.cn/zjATQlf
使用node.js建博客:http://witcheryne.iteye.com/blog/1172069
写给 Node.js 学徒的 7 个建议 http://blog.jobbole.com/48769/
司徒正美大神的node博客教程:http://www.cnblogs.com/rubylouvre/tag/node.js/
大熊君node系列教程:http://www.cnblogs.com/bigbearbb/category/650279.html
cdn社区node:http://blog.csdn.net/gxhacx/article/category/1641719
nodejs相关:
learnyounode中文版: https://github.com/lisposter/learnyounode
用socket.io 搭建聊天室: https://github.com/nswbmw/N-chat/wiki/_pages
Node+Mongoose常用查询中文文档:http://www.nonb.cn/blog/nodejs-mongoose-query-chinaese.html
nodejs实体中文图书:
Node.js权威指南: http://book.douban.com/subject/25892704/
nodejs实战: http://book.douban.com/subject/25867920/ 2014-5
了不起的node.js: http://book.douban.com/subject/25767596/ 2014年1月
node.js高级编程: http://book.douban.com/subject/25799431/ 2013年12月
深入浅出nodejs: http://book.douban.com/subject/25768396/ 2013年12月
node.js入门经典: http://book.douban.com/subject/23780706/ 2013年4月
node.js开发指南: http://book.douban.com/subject/10789820/ 2012年7月
Node Web开发: http://book.douban.com/subject/10586326/ 2012年4月
七天学会NodeJS:http://nqdeng.github.io/7-days-nodejs/#8
cdsn: http://blog.csdn.net/hanqilin/article/details/45009763
http://blog.csdn.net/sunchunmei555/article/details/12747159
node视频教程:
汇智教程网:http://www.nonb.cn/blog/nodejs-mongoose-query-chinaese.html
node的一些好工具:
npm install -g nodemon //安装nodemon
当我第一次开发的node app时候,每当我修改很小东西的时候需要control+c
来关闭当前应用,再node app
重启应用,这让开发者非常痛苦。Nodemon是一款智能的工具,能监测到你应用的更新,自动重启服务,大大提高了开发效率。
2.http-server--让任何一个文件加都可以变成一个服务器通过127.0.0.1访问
npm install -g http-server //安装http-server
3.MongoVUE -- 数据库可视化
4.supervisor--解决开发中的调试问题
npm install -g supervisor
其实这个工具跟nodemon的功能有点类似,可以启动脚本,脚本修改时会自动重启。
5.node-inspector--调试Node.js的利器
大部分基于Node.JS的应用都是运行在浏览器中的,例如强大的调试工具node-inspector。node-inspector是一个完全基于node.js的开源在线调试工具。
6.npm的相关技巧
npm info mongoose version //查询模块的版本信息
npm update mongoose //npm 更新模块
npm update -g npm //npm 升级非常方便, 直接使用 npm 就可以
npm list
npm list npm -global list
npm模块管理器 :http://javascript.ruanyifeng.com/nodejs/npm.html
还有一些比较好的教程整理:
node中文社区:https://cnodejs.org/getstart
朴灵:https://github.com/JacksonTian
GitHub上整理的一些工具,求补充:http://segmentfault.com/q/1010000002404545