-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.js
More file actions
63 lines (48 loc) · 1.68 KB
/
app.js
File metadata and controls
63 lines (48 loc) · 1.68 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
var express = require('express'),
config = require('./config/config');
var app = express();
module.exports = require('./config/express')(app, config);
app.listen(config.port, function () {
console.log('Express server listening on port ' + config.port);
});
// MONGOOOO SETUP
// var MongoClient = require('mongodb').MongoClient
// , assert = require('assert');
// var insertDocuments = function(db, callback) {
// // Get the documents collection
// var collection = db.collection('documents');
// // Insert some documents
// collection.insertMany(
// [{a : 1}, {a : 2}, {a : 3}],
// function(err, result) {
// assert.equal(err, null);
// assert.equal(3, result.result.n);
// assert.equal(3, result.ops.length);
// console.log("Inserted 3 documents into the collection");
// callback(result);
// }
// );
// }
// var findDocuments = function(db, callback) {
// // Get the documents collection
// var collection = db.collection('documents');
// // Find some documents
// collection.find({}).toArray(function(err, docs) {
// assert.equal(err, null);
// console.log("Found the following records");
// console.log(docs)
// callback(docs);
// });
// }
// // Connection URL
// var url = 'mongodb://localhost:27017/myproject';
// // Use connect method to connect to the server
// MongoClient.connect(url, function(err, db) {
// assert.equal(null, err);
// console.log("Connected successfully to server");
// insertDocuments(db, function() {
// findDocuments(db, function() {
// db.close();
// });
// });
// });