美文网首页
node APIServer

node APIServer

作者: 赵伟敏_19 | 来源:发表于2018-11-07 14:22 被阅读0次

1.安装express

npm install express -g

npm install express-generator -g

2.创建项目

cmd 控制终端打开项目目录

 express ApiServer (ApiServer:项目名称)

cd ApiServer

npm install 或者 cnpm install

bin:用来启动应用(服务器)

public: 存放静态资源目录

routes:路由用于确定应用程序如何响应对特定端点的客户机请求,包含一个 URI(或路径)和一个特定的 HTTP 请求方法(GET、POST 等)。每个路由可以具有一个或多个处理程序函数,这些函数在路由匹配时执行。

views: 模板文件所在目录 文件格式为.jade

app.js main文件 服务器启动入口

3.启动项目

npm start

打开http://localhost:3000

over


相关文章

网友评论

      本文标题:node APIServer

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