|
| 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