28 lines
479 B
Plaintext
28 lines
479 B
Plaintext
noodejs:让js运行在后端服务器上的运行环境
|
||
|
||
基于 c++ + v8 写的
|
||
|
||
node -v
|
||
v12.13.1
|
||
|
||
npm install -g cnpm --registry=https://registry.npm.taobao.org
|
||
|
||
|
||
|
||
|
||
项目配置信息文件 package.json
|
||
|
||
npm 依赖管理工具
|
||
|
||
npm init -y or cnpm init -y
|
||
|
||
https://www.npmjs.com/
|
||
|
||
npm install(i) 插件名 or cnpm i 插件名
|
||
|
||
切换npm插件下载地址为国内的淘宝镜像源 cnpm
|
||
|
||
https://developer.aliyun.com/mirror/NPM?from=tnpm
|
||
|
||
|
||
npm run start or npm start |