-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
56 lines (45 loc) · 1.44 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
//Modules Needed!
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
//Config DB file of Stock symbols using mongoose as ORM
//I setup a mongodb server on mongolabs that host the data need for this application.
mongoose.connect("mongodb://graff:password@ds033875.mongolab.com:33875/stock_symbols", function(err, db) {
if(!err) {
console.log("We are connected");
}
else{
//If it can connect alert the user!
alert("Could not connect to MongoLabs!")
}
});
//Setup the Stock schema
var Schema = mongoose.Schema;
//Very basic schema model outline for the fields of each stock
var stockSchema = new Schema({
Symbol:String,
Name:String,
Sector:String,
Industry:String
});
//Define the model based on schema, set the collection
var Stock = mongoose.model('Stock', stockSchema,'stock_list');
module.exports = Stock;
//Restful Endpoint that will return all stocks when called
app.get('/stock', function (req, res) {
return Stock.find(function (err, stocks) {
if (!err) {
return res.send(stocks);
} else {
return console.log(err);
}
});
});
//Set the port to localhost:8080!
var port = process.env.PORT || 8080;
//directory that has my index.html!
app.use(express.static(__dirname + '/public'));
app.listen(port);
console.log('Stock App is live on Port localhost:' + port);
exports = module.exports = app;