Skip to content

Commit ae58c91

Browse files
mongodb boilerplate
restore delete mongo example change the readme
1 parent a4efc5e commit ae58c91

File tree

6 files changed

+210
-0
lines changed

6 files changed

+210
-0
lines changed

Week3/todo backend/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
package-lock.json
2+
secrets.json

Week3/todo backend/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
This is ment for a live Q&A exercise about making a backend for a todo app, with a focus on the native mongodb client.
2+
3+
On [todomvc.com](http://todomvc.com/) you can see an example todo app,
4+
and this site has an awesome overview of different implementations of the same todo app.
5+
6+
The `secrets.json.example` should be copied to `secrets.json`.
7+
It's good to mention this practice, to keep passwords out of version control.
8+
9+
There is `postman-collection.json` file that you can import to easily demonstrate all the endpoints.
10+
11+
The content of this exercise is based on [a tutorial on Zellwk.com](https://zellwk.com/blog/crud-express-mongodb/)
12+
The `server.js` should be started using `npm run dev` that will use nodemon to hot-reload the server.
13+
There are four CRUD endpoints listed already that can be implemented live.

Week3/todo backend/package.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "todo-backend",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"dev": "nodemon server.js"
8+
},
9+
"author": "",
10+
"license": "ISC",
11+
"dependencies": {
12+
"body-parser": "^1.19.0",
13+
"express": "^4.17.1",
14+
"mongodb": "^3.6.3"
15+
},
16+
"devDependencies": {
17+
"nodemon": "^2.0.7"
18+
}
19+
}
+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"info": {
3+
"_postman_id": "35e0d81a-cf4f-41d0-b7d8-95905f20ff25",
4+
"name": "ToDo app",
5+
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
6+
},
7+
"item": [
8+
{
9+
"name": "List",
10+
"request": {
11+
"method": "GET",
12+
"header": [],
13+
"url": {
14+
"raw": "localhost:3000/todos",
15+
"host": [
16+
"localhost"
17+
],
18+
"port": "3000",
19+
"path": [
20+
"todos"
21+
]
22+
}
23+
},
24+
"response": []
25+
},
26+
{
27+
"name": "Create",
28+
"request": {
29+
"method": "POST",
30+
"header": [],
31+
"body": {
32+
"mode": "urlencoded",
33+
"urlencoded": [
34+
{
35+
"key": "title",
36+
"value": "chill out",
37+
"type": "text"
38+
},
39+
{
40+
"key": "is_checked",
41+
"value": "false",
42+
"type": "text"
43+
}
44+
]
45+
},
46+
"url": {
47+
"raw": "localhost:3000/todos",
48+
"host": [
49+
"localhost"
50+
],
51+
"port": "3000",
52+
"path": [
53+
"todos"
54+
]
55+
}
56+
},
57+
"response": []
58+
},
59+
{
60+
"name": "Update",
61+
"request": {
62+
"method": "PUT",
63+
"header": [],
64+
"body": {
65+
"mode": "urlencoded",
66+
"urlencoded": [
67+
{
68+
"key": "title",
69+
"value": "evaluate after done",
70+
"type": "text",
71+
"disabled": true
72+
},
73+
{
74+
"key": "is_checked",
75+
"value": "true",
76+
"type": "text"
77+
}
78+
]
79+
},
80+
"url": {
81+
"raw": "localhost:3000/todos/5ffa3c8c10402b00e6af7c57",
82+
"host": [
83+
"localhost"
84+
],
85+
"port": "3000",
86+
"path": [
87+
"todos",
88+
"5ffa3c8c10402b00e6af7c57"
89+
]
90+
}
91+
},
92+
"response": []
93+
},
94+
{
95+
"name": "Delete",
96+
"request": {
97+
"method": "DELETE",
98+
"header": [],
99+
"url": {
100+
"raw": "localhost:3000/todos/5ffa3b277c5cfb007e758be3",
101+
"host": [
102+
"localhost"
103+
],
104+
"port": "3000",
105+
"path": [
106+
"todos",
107+
"5ffa3b277c5cfb007e758be3"
108+
]
109+
}
110+
},
111+
"response": []
112+
}
113+
]
114+
}
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"mongoConnection": "",
3+
"test": ""
4+
}

Week3/todo backend/server.js

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
const express = require('express');
2+
const bodyParser = require('body-parser')
3+
const app = express();
4+
const ObjectID = require('mongodb').ObjectID;
5+
const MongoClient = require('mongodb').MongoClient
6+
const config = require('./secrets.json');
7+
8+
async function getMongoCollection() {
9+
const client = new MongoClient(config.mongoConnection);
10+
await client.connect();
11+
const database = client.db("todo-app");
12+
return database.collection("todos");
13+
}
14+
15+
// Make sure you place body-parser before your CRUD handlers!
16+
app.use(bodyParser.urlencoded({extended: true}))
17+
18+
app.listen(3000, function () {
19+
console.log('listening on 3000')
20+
})
21+
22+
app.get('/todos', async function (req, res) {
23+
24+
const collection = await getMongoCollection();
25+
26+
// http://mongodb.github.io/node-mongodb-native/3.6/tutorials/crud/#read-methods
27+
28+
res.send('This should list all todos')
29+
})
30+
31+
app.post('/todos', async function (req, res) {
32+
33+
const collection = await getMongoCollection();
34+
35+
// http://mongodb.github.io/node-mongodb-native/3.6/tutorials/crud/#insert-documents
36+
37+
res.send('This should create a single todo');
38+
})
39+
40+
app.put('/todos/:id', async function (req, res) {
41+
42+
const collection = await getMongoCollection();
43+
44+
// http://mongodb.github.io/node-mongodb-native/3.6/tutorials/crud/#updating-documents
45+
// https://stackoverflow.com/questions/4902569/node-js-mongodb-select-document-by-id-node-mongodb-native
46+
47+
res.send('This should update a single todo: ' + req.params.id)
48+
})
49+
50+
app.delete('/todos/:id', async function (req, res) {
51+
52+
const collection = await getMongoCollection();
53+
54+
// http://mongodb.github.io/node-mongodb-native/3.6/tutorials/crud/#removing-documents
55+
56+
res.send('This should delete a single todo: ' + req.params.id)
57+
})
58+

0 commit comments

Comments
 (0)