美文网首页
无标题文章

无标题文章

作者: Aberstin | 来源:发表于2016-11-01 17:48 被阅读4次

    安装express

    //命令行输入命令
    npm install -g express
    npm install -g express-generator
    安装后的默认路径:
    C:\Users\Administrator\AppData\Roaming\npm
    └── express@4.14.0

    注:将nodejs的安装路径,还有express的安装路径加到系统环境变量里面

    创建项目

    express -t ejs E:/NodeJS/demo01

    运行项目

    install dependencies:
    cd E:/NodeJS/demo01 && npm install
    run the app:
    SET DEBUG=demo01:* & npm start

    浏览器访问:http://127.0.0.1:3000/即可见nodejs站点页面

    //进入项目目录
    cd newsproject
    //输入命令安装
    npm install

    node app.js

    相关文章

      网友评论

          本文标题:无标题文章

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