nodejs::开发环境搭建

Posted osbreak

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs::开发环境搭建相关的知识,希望对你有一定的参考价值。

 

vscode + node-v12.16.3-x64.msi

 

1、 安装 node-v12.16.3-x64.msi 
  验证: node -v ;   npm -v 

2、在安装目录下新建 node_cache  : 存放下载包的缓存
3、在安装目录下新建 node_global : 存放安装的全局模块
4、添加环境变量
  将用户变量中path变量中的C:\\Users\\BK\\AppData\\Roaming\\npm 修改为 C:\\AppInstall\\nodejs\\node_global    
   新建系统变量NODE_PATH C:\\AppInstall\\nodejs\\node_global

   npm config set cache "C:\\AppInstall\\nodejs\\node_cache"
   npm config set prefix "C:\\AppInstall\\nodejs\\node_global" 

6、设置国内源,否则下载国外的比较慢:安装淘宝镜像cnpm
在cmd中输入:npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm将安装在 C:\\AppInstall\\nodejs\\node_global 中;将 C:\\AppInstall\\nodejs\\node_global 添加到系统环境变量中。
cnpm -v 验证

 

VSCode中语法智能提示功能:
安装 typings
cnpm i typings -g
验证 typings -v

cmd终端:在项目目录中
typings init
cnpm install --save @types/node
重启项目,代码提示生效

 

node_global,node_cache是否配置成功
npm install express -g

 

以上是关于nodejs::开发环境搭建的主要内容,如果未能解决你的问题,请参考以下文章

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

搭建eclipse的nodejs开发环境图解

NodeJS React 开发环境搭建

nodejs开发环境搭建

nodejs开发环境搭建

nodejs开发环境搭建