Node.js 基本使用

123 阅读1分钟

Node.js 基本使用

Window平台 安装 & 更新

官网安装包 覆盖安装(cmd where node 查看安装目录)

n 不支持windows系统

版本查看

  • node -v
  • npm -v

当前工程文件夹下安装npm库

npm install xxx

当前工程文件夹下安装npm库 并加入开发环境

npm install xxx -save

更新npm库

npm update