-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
60 lines (49 loc) · 1.63 KB
/
index.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
if (process.env.NODE_ENV !== "production") {
require('dotenv').config();
}
const express = require("express");
const PORT = process.env.PORT || 3000;
const app = express();
const { v4: uuid4 } = require('uuid');
const path = require('path');
const methodOverride = require('method-override');
const scraper = require('./scraper.js');
const amazonitem = require('./schema/amazon.js');
const flipkartitem = require('./schema/flipkart.js')
const mongoose = require('mongoose');
const amazonProduct = require("./schema/amazon.js");
const flipkartProduct = require("./schema/flipkart.js");
const dburl = process.env.DB_URL
mongodb://127.0.0.1:27017/products
mongoose.connect(dburl)
.then(() => {
console.log("connection open");
})
.catch(err => {
console.log(`error:${err}`);
})
app.use(express.urlencoded({ extended: true }));
app.use(express.json())
app.use(methodOverride('_methid'));
app.use(express.static(path.join(__dirname, 'public')));
app.set('views', path.join(__dirname, '/views'))
app.set('view engine', 'ejs');
app.get('/', (req, res) => {
res.render('home');
})
// app.get('/show', async (req, res) => {
// })
app.post('/show', async (req, res) => {
await amazonProduct.deleteMany();
await flipkartProduct.deleteMany();
const { input } = req.body;
//console.log(input);
const amazonp=await scraper.Amazon(input);
const flipkartp=await scraper.Flipkart(input);
// const amazonp = await amazonitem.find({});
// const flipkartp = await flipkartitem.find({});
res.render('show', { amazonp, flipkartp });
})
app.listen(PORT, () => {
console.log(`Listining on port ${PORT}`)
})