linux下node.js环境搭建脚本

发布时间:2019-11-19编辑:脚本学堂
一例node.js搭建脚本,下载node源码,创建node安装目录,进行编译安装,并设置环境变量,完成node.js环境的安装就可以了。

linux下node.js环境搭建脚本

代码:
 

#! /bin/bash
##下载node源码
git clone git://github.com/joyent/node.git
##创建node安装目录
cd && mkdir ~/local && cd ~/local
./configure --prefix=$HOME/local/node
##编译
make && make install
##设置环境变量
export PATH="$HOME/local/node/bin:$PATH"
export NODE_PATH="$HOME/local/node:$HOME/local/node/lib/node_modules"
##express安装
npm install express -gd

用express创建项目
 

express hellowlord
会生成 app.js package.json  public  routes  views

1、在控制台打印helloword,编写一个纯文本的hello.js,内容:
 

console. log ('hello node.js ! I coming! ' );


运行:node hello.js,运行结果是打印代码中的字符串;

2、启动一个http的web server,编写一个纯文本的server.js,内容:
 

复制代码 代码示例:

//引入HTTP包
var http = require('http');

//创建http 的web服务器
var server = http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello ,This is node Servern');
});

//监听3000端口
server.listen(3000);

console.log('Server start success,port=3000');

运行该代码:
nohup node server.js &

此时通过http://127.0.0.1:8888/访问,就可以显示Hello ,This is node Server。