-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
86 lines (53 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const express = require('express');
const bodyParser = require('body-parser');
const pdf = require('html-pdf');
const cors = require('cors');
const path = require('path');
// const dotenv = require("dotenv");
const pdfTemplate = require('./documents/index');
const app = express();
app.use(cors());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
// POST Route - PDF generation and fetching of the data
app.post('/create-pdf', (req, res) => {
pdf.create(pdfTemplate(req.body), {}).toFile('Resume.pdf', (err) => {
if (err) {
res.send(Promise.reject());
console.log(err);
}
res.send(Promise.resolve());
console.log('Success');
});
});
// Get - Send generated pdf to the client
app.get('/fetch-pdf', (req, res) => {
res.sendFile(`${__dirname}/Resume.pdf`);
});
// Serve static assets if in production
// if(process.env.NODE_ENV === 'production'){
// //set static folder
// app.use(express.static('../client/build'));
// app.get('/', (req, res) => {
// //res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
// // app.use(express.static(path.resolve(__dirname, 'client', 'build')))
// res.sendFile(path.resolve(__dirname, '../client', 'build', 'index.html'));
// });
// }
// Serve static assets if in production
if(process.env.NODE_ENV === 'production'){
const path = require('path')
//set static folder
// app.use(express.static('./client/build'));
app.get('/', (req, res) => {
app.use(express.static(path.resolve(__dirname, 'client', 'build')));
//res.sendFile(path.resolve(__dirname, '../client', 'build', 'index.html'));
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
});
}
const port = 8000;
app.listen(port, () => console.log(`Server started on port ${port}`));
// "server": "nodemon app.js",
// "client-install": "npm install --prefix client",
// "client": "npm run build --prefix client",
// "dev": "concurrently \"npm run server\" \"npm run client\""