node.js 基本安装

Windows下 node的安装和普通程序没有两样,我就不写了。

 

在ubuntu下安装nodejs非常简单,使用apt就可以

Sudo apt-get install nodejs

安装路径会在 /usr/share/nodejs

然后安装npm (node包管理器)

Sudo apt-get install npm

安装路径会在 /usr/share/npm

 

但是使用npm -g安装的任何模块都会在/usr/local 目录下,你需要把模块移动到/usr/share/npm/node_modules 目录下才可以生效.不用-g参数会直接安装到模块目录。

 

当安装模块的时候,node会连同所有需要的模块一同安装,这是因为package.json的定义,如果我们自己开发模块,也需要这样写。

 

在js中有种闭包函数的用法,php也有这种用法。结构大概是这样

(function()

{

         Console.log(‘closure function has been excuted!);

}()

);

 

Console.log(‘hello world!!!’);

 

会得到结果:

Closure function has been excuted.

Hello world!!!

 

posted @ 2013-05-07 17:15  GeeekNerd  阅读(124)  评论(0编辑  收藏  举报