-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
29 lines (23 loc) · 834 Bytes
/
server.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
'use strict';
var express = require('express');
var cors = require('cors');
var multer = require('multer')
var upload = multer({ dest: 'uploads/' })
var app = express();
app.use(cors());
app.use('/public', express.static(process.cwd() + '/public'));
app.get('/', function (req, res) {
res.sendFile(process.cwd() + '/views/index.html');
});
app.get('/hello', function(req, res){
res.json({greetings: "Hello, API"});
});
app.post('/api/fileanalyse', upload.single('upfile'), function (req, res, next) {
console.log("We reached the post.")
res.json({name: req.file.originalname, type: req.file.mimetype, size: req.file.size})
// req.file is the `upfile` file
// req.body will hold the text fields, if there were any
})
app.listen(process.env.PORT || 3000, function () {
console.log('Node.js listening ...');
});