-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
57 lines (46 loc) · 1.33 KB
/
Copy pathapp.js
File metadata and controls
57 lines (46 loc) · 1.33 KB
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
const express = require("express");
const app = express();
const fs = require("fs");
const multer = require("multer");
const {TesseractWorker} = require ("tesseract.js")
const worker = new TesseractWorker();
// ==============================================================
//settings
app.set("view engine", "ejs");
// creating a storage
const storage = multer.diskStorage({
destination: (req,file,cb) => {
cb(null, "./uploads")
},
filename: (req, file, cb) => {
cb(null, file.originalname)
},
});
// =================================
// making a file
const upload = multer({storage: storage}).single('avatar');
//routes
app.get('/', (req,res) => {
res.render("index");
});
app.get('/upload',(req,res)=>{
res.render("")
})
app.post("/upload", (req,res) => {
upload(req,res, err => {
fs.readFile(`./uploads/${req.file.originalname}`, (err, data) => {
if(err) return console.log(err);
worker.recognize(data, "eng", {tessjs_create_pdf: '1'})
.progress(progress => {
console.log(progress);
})
.then(result => {
res.send(result.text);
})
.finally(() => worker.terminate)
})
})
});
///listen
const PORT = 5000 || process.env.PORT;
app.listen(PORT, () => console.log(`Running on port ${PORT}`));