-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
91 lines (68 loc) · 2.48 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Dependencies _______________________________
const express = require("express");
const path = require("path");
const uniqid = require('uniqid');
const fs = require("fs")
// Sets up Express App and Heroku Port control || else default port number.
const app = express();
const PORT = process.env.PORT || 3000;
// Sets up the Express app to handle data parsing ___________
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
app.use(express.static(__dirname));
// Listener starts the server ________
app.listen(PORT, function() {
console.log(`App listening on PORT ${PORT}`);
});
// Setup notes
fs.readFile("Develop/db/db.json", "utf8", (err, data) => {
if (err) throw err;
let notes = JSON.parse(data);
// ROUTES __________________________________
// API Routes
// GET `/api/notes` - Should read the `db.json` file and return all saved notes as JSON.
app.get("/api/notes", function(req, res) {
res.json(notes);
});
// POST `/api/notes` - Should receive a new note to save on the request body,
//add it to the `db.json` file, and then return the new note to the client.
app.post("/api/notes", function(req, res) {
let newNote = req.body;
newNote.id = uniqid()
notes.push(newNote);
updateDb();
res.send('this worked!')
return console.log("Added new note: " +newNote.title);
});
// Recalls a note via ID
app.get("/api/notes/:id", function(req,res) {
res.json(notes[req.params.id]);
});
// Deletes a note via ID
app.delete("/api/notes/:id", function(req, res) {
notes = notes.filter(
note => {
return note.id != req.params.id
}
)
updateDb();
res.send('this worked!')
console.log("Deleted note with ID of "+req.params.id);
});
// HTML Routes
// GET `/notes` - Should return the `notes.html` file.
app.get('/notes', function(req,res) {
res.sendFile(path.join(__dirname, "Develop/public/notes.html"));
});
// GET `*` - Should return the `index.html` file
app.get('*', function(req,res) {
res.sendFile(path.join(__dirname, "Develop/public/index.html"));
});
// db.json file is updated when notes are added or deleted.
function updateDb() {
fs.writeFile("Develop/db/db.json",JSON.stringify(notes),err => {
if (err) throw err;
return true;
});
}
});