-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
28 lines (22 loc) · 657 Bytes
/
index.js
File metadata and controls
28 lines (22 loc) · 657 Bytes
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
var express = require('express');
const multer = require('multer');
const upload = multer()
var cors = require('cors');
require('dotenv').config()
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.post("/api/fileanalyse",upload.single('upfile'),(req,res)=>{
res.json({
name: req.file.originalname,
type: req.file.mimetype,
size: req.file.size
})
})
const port = process.env.PORT || 3000;
app.listen(port, function () {
console.log('Your app is listening on port ' + port)
});