美文网首页
快速安装 Node.js 并初始化 Express 应用

快速安装 Node.js 并初始化 Express 应用

作者: Rapp | 来源:发表于2017-11-20 15:16 被阅读37次
  1. 安装 Node Version Manager
  • 下载并运行安装脚本
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash 
$ nvm --version

Note: On Linux, after running the install script, if you get nvm: command not found, simply close your current terminal, open a new terminal, and try verifying again. If it doesn't work, your system may not have a .bash_profile file where the command is set up. Simply create one with touch ~/.bash_profile and run the install script again. If the above doesn't fix the problem, open your .bash_profile and add the following line of code: source ~/.bashrc

  1. Install the latest long-term support (LTS) version
$ nvm install --lts
$ node --version
$ npm --version
  1. 查看已安装的 node 版本
$ nvm ls
  1. 使用某一版本的 node
$ nvm use 8.9.1
Now using node v8.9.1 (npm v5.5.1)
$ nvm use 4.6.0
Now using node v4.6.0 (npm v2.15.9)
  1. 设置默认 Node 版本
nvm alias default 8.9.1
  1. 安装 nodemon
$ npm install -g nodemon
  1. 安装 Express application generator
$ npm install -g express-generator
  1. 初始化 Express 项目
$ git clone https://github.com/bioxfu/WebDev
$ bash WebDev/express_init.sh
  1. 运行 Express app
$ nodenom

相关文章

  • 快速安装 Node.js 并初始化 Express 应用

    安装 Node Version Manager 下载并运行安装脚本 Note: On Linux, after r...

  • MAC下安装Express框架并创建Blog应用

    MAC下安装Express框架并创建Blog应用 标签(空格分隔): Node.js [TOC] 安装Expres...

  • Express框架

    基于 Node.js 平台,快速、开放、极简的 web 开发框架 安装环境 创建一个Express应用

  • node创建web服务器

    一、基本代码 创建文件夹初始化项目,并安装express包 通过express快速创建web服务器,将vue打包生...

  • nodejs 教程一(helloworld)

    Express 基于Node.js平台,快速、开放、极简的web开发框架 首先安装 Express 创建web项目...

  • express

    Express express是一个基于node.js平台,快速、开放的web开发框架。 安装 $ npm ins...

  • Express 应用生成器

    在安装express之前,确保你已经安装了 nodejs通过应用生成器工具 express 可以快速创建一个应用的...

  • Express 框架

    Express 简介 Express是基于Node.js平台的快速、开放、极简的web应用开发框架。 提供了一系列...

  • mac用户安装 Express

    Express-基于Node.js平台的web应用开发框架 这篇文档会帮助你安装Express。 中文网:中文网(...

  • mongodb,express

    Express 基于 Node.js 平台,快速、开放、极简的 Web (web应用 网站 ) 开发框架 expr...

网友评论

      本文标题:快速安装 Node.js 并初始化 Express 应用

      本文链接:https://www.haomeiwen.com/subject/dbnmvxtx.html