【centos使用系列】安装nodejs并初步使用

node与npm介绍

centos下安装nodejs

下载执行脚本

curl -sL https://rpm.nodesource.com/setup_10.x | bash -

安装依赖

yum install gcc-c++ make

安装nodejs

yum install -y nodejs

初步使用

node帮助命令

npm帮助命令

npm安装命令

第一个nodejs程序

var http=require('http')
http.createServer(function(req,res){
res.writeHead(200,{'Content-type':'test/plain'});
res.end('hello,wordl\n');
}).listen(1337,'127.0.0.1');
console.log('server running at http://127.0.0.1:1337');