自学Node.js 之前的准备工作

      准备业余时间学习一下Node.js,也是为了能够给同学们做技术分享保持比较充足的素材。
   
     首先找到它的官网:http://nodejs.org/ ,作为一个很牛掰的open-source项目,还是需要去它的专属技术社区好好逛一逛,如下是官网的一段英文描述:一个关注于事件驱动,解决高并发和异步I/O处理,并具有高速js解析引擎的platform。这也是很值得我们去了解和学习的。

自学Node.js 之前的准备工作_第1张图片

     Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.    

   
     搜罗到的资料:
    1.入门级教程,http://www.nodebeginner.org/index-zh-cn.html#javascript-and-nodejs

    2.去GitHub上: http://github.com/joyent/node

    3.Node.js的官方API:http://nodejs.org/api/all.html

    4.一些国外的论坛:
      http://howtonode.org/
      http://stackoverflow.com/questions/tagged/node.js
      http://docs.nodejitsu.com/

   5.了解基于Node.js的框架:
      METEOR http://tchen.me/posts/2012-12-16-why-meteor.html

   6.了解Node.js第三方包管理npm:
     https://npmjs.org/

     等等,待补充。

你可能感兴趣的:(自学Node.js 之前的准备工作)