-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
68 lines (51 loc) · 2.27 KB
/
server.js
File metadata and controls
68 lines (51 loc) · 2.27 KB
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
// server.js
// BASE SETUP
// =============================================================================
// call the packages we need
var express = require('express'); // call express
var app = express(); // define our app using express
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:27017/js_wallet'); // connect to our database
var Transaction = require('./models/transaction');
app.use("/", express.static('public')); //work with static files from public
// configure app to use bodyParser()
// this will let us get the data from a POST
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
var port = process.env.PORT || 9999; // set our port
// ROUTES FOR OUR API
// =============================================================================
var router = express.Router(); // get an instance of the express Router
// test route to make sure everything is working (accessed at GET http://localhost:8080/api)
router.get('/', function(req, res) {
res.json({ message: 'js wallet api!' });
});
// more routes for our API will happen here
router.route('/transactions')
.post(function(req, res) {
var transaction = new Transaction(); // create a new instance of the Transaction model
console.log(req.body);
transaction.name = req.body.name; // set the name (comes from the request)
transaction.description = req.body.description; // set the desctiption (comes from the request)
// save the transaction and check for errors
transaction.save(function(err) {
if (err)
res.send(err);
res.json({ message: 'Transaction created!' });
});
})
.get(function(req, res) {
Transaction.find(function(err, transactions) {
if (err)
res.send(err);
res.json(transactions);
});
});
// REGISTER OUR ROUTES -------------------------------
// all of our routes will be prefixed with /api
app.use('/api', router);
// START THE SERVER
// =============================================================================
app.listen(port);
console.log('JS Wallet server started on ' + port);