-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
41 lines (29 loc) · 887 Bytes
/
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
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const twit_search = require("./search");
const port = 3000;
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }));
// parse application/json
app.use(bodyParser.json());
app.use(express.static('public'));
app.use('/static', express.static('public'))
app.set('view engine', 'ejs');
app.get('/', (req, res) => {
res.render('index', {});
});
app.post("/loc", (req, res) => {
const loc = req.body.loc;
twit_search.location(loc, (data) => {
res.json(data);
});
})
app.post("/search", (req, res) => {
const query = req.body.query;
console.log(query);
twit_search.search(query, (data) => {
res.json(data);
});
})
app.listen(port, () => console.log(`Example app listening on port ${port}!`));