-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
64 lines (50 loc) · 1.85 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
var express= require('express');
var app = express();
var http = require('http');
var fs = require('fs');
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
var List = require('./list_items.js');
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost/List";
//Local promise to global promise
mongoose.Promise = global.Promise;
//Database connection establishing
mongoose.connect('mongodb://localhost/List',{useNewUrlParser: true});
mongoose.connection.once('open',()=>{
console.log("Connection Succesful!");
}).on('error',(error)=>{
console.log("Your error : "+ error);
});
var urlencodedParser = bodyParser.urlencoded({extended: false});
//setting view engine
app.set('view engine','ejs');
//getting the link and passing a page to that link
app.get('/',function(req,res){
console.log(req.url);
res.sendFile(__dirname+'/index.html');
});
app.listen(3000);
//Post request
app.post('/list',urlencodedParser,function(req,res){
console.log(req.body);
items = req.body;
//Saving to database
const newitem = new List(items); //items is according to Schema
newitem.save().then(()=>{
console.log("Value entered in database");
//Mongoclient connects with db again before CRUD operations!
MongoClient.connect(url,{useNewUrlParser:true}, function(err, db) {
if (err) throw err;
var dbo = db.db("List");
//finding after saving the new item to db
dbo.collection("items").find({}).toArray(function(err, result) {
if (err) throw err;
console.log("Fetched properly!!");
//passing to new webpage the items of database
res.render('list',{q:{s:result}});
db.close();
});
});
});
});