我爱编程

Node.js 入门(一)—— 安装和使用

2018-01-19  本文已影响0人  154396b61865

一、安装(CentOS)
curl -sL https://rpm.nodesource.com/setup_7.x | bash -
yum install -y nodejs
yum install -y gcc-c++ make

安装完成之后,为了加速下载过程,建议换源。
nano ~/.npmrc 写入 registry =https://registry.npm.taobao.org

二、基本操作
1、查看版本**
node -v
2、运行 js
vim helloworld.js 写入 console.log("Hello World");
node helloworld.js
3、初始化工程
mkdir expressTest
cd expressTest
npm init
4、安装依赖包
npm install express --save
查看安装的包:ls node_modules 或者 npm list

三、常用框架&包

四、其他工具

上一篇下一篇

猜你喜欢

热点阅读