文件名称:node-js-todo-app:在heroku上运行的简单Node.js Todo App
文件大小:7KB
文件格式:ZIP
更新时间:2024-06-07 21:09:35
nodejs heroku hapijs JavaScript
待办事项 该Node.js应用程序在heroku上运行。 工作流程 npm install安装依赖项。 node run start以在本地运行应用程序。 git push heroku master同步heroku实例上的master分支。 heroku ps:scale web=1启动应用程序。 heroku ps:scale web=0停止应用程序。 该应用程序在https://node-js-todo-app.herokuapp.com/todos运行 原料药 数据结构 类别: {id, name} 待办事项: {id, text, categoryId, done} 终点 /categories ,仅GET /todos ,获取并发布 /todos/:id ,补丁
【文件预览】:
node-js-todo-app-master
----.gitignore(12B)
----package.json(588B)
----package-lock.json(10KB)
----LICENSE(1KB)
----README.md(552B)
----categories.js(109B)
----Procfile(20B)
----todos.js(470B)
----server.js(2KB)