-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
65 lines (55 loc) · 2.23 KB
/
app.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
/**
* Module dependencies.
*/
var express = require('express');
var routes = require('./routes');
var user = require('./routes/user');
var notes = require('./routes/notes');
var path = require('path');
var mongoose = require('mongoose');
// open a new mongodb connection to the notes database
var mongo_uri = process.env.MONGOLAB_URI || 'mongodb://localhost';
mongoose.connect(mongo_uri + '/notes');
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.json());
app.use(express.urlencoded());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(path.join(__dirname, 'public')));
// development only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
//app.get('/', routes.index);
//app.get('/users', user.list); //list users
// Add headers to allow cross domain requests
app.use(function (req, res, next) {
// Website you wish to allow to connect
res.setHeader('Access-Control-Allow-Origin', '*'); // '*' all domains
// Request methods you wish to allow
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE');
// Request headers you wish to allow
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
// Set to true if you need the website to include cookies in the requests sent
// to the API (e.g. in case you use sessions)
//res.setHeader('Access-Control-Allow-Credentials', true);
// Pass to next layer of middleware
next();
});
app.get('/notes', notes.getNotes); // list notes
app.post('/notes', notes.postNote); // create a new note
app.put('/notes', function(req,res){throw new Error(); }); // error
app.delete('/notes', notes.deleteNotes ); // delete all notes
app.get('/notes/:id', notes.getNote);
app.put('/notes/:id', notes.putNote); // if exist update note, else error
app.post('/notes/:id', function(req,res){throw new Error(); }); // creates a new note
app.delete('/notes/:id', notes.deleteNote); // delete note
app.listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});