Skip to content

Commit 27b56d1

Browse files
Initial commit
0 parents  commit 27b56d1

File tree

9 files changed

+1996
-0
lines changed

9 files changed

+1996
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
output
3+
.env
4+
.env.example

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Prerender
2+
> A servcice to prerender single page applications in order to enahance the SEO

app.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
require('dotenv').config()
2+
const express = require('express')
3+
const cookieParser = require('cookie-parser')
4+
const logger = require('morgan');
5+
const PrerenderRouter = require('./routes/prerender');
6+
7+
const app = express();
8+
9+
app.use(logger('dev'))
10+
app.use(express.json())
11+
app.use(express.urlencoded({ extended: false }))
12+
13+
app.use('/prerender', PrerenderRouter)
14+
app.all('*', (req, res) => {
15+
res.status(404).json({ error: `Sorry you cannot ${req.method} ${req.path}.` })
16+
})
17+
18+
module.exports = app;

bin/www

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
#!/usr/bin/env node
2+
3+
/**
4+
* Module dependencies.
5+
*/
6+
7+
const app = require('../app');
8+
const debug = require('debug')('deployer:server');
9+
const http = require('http');
10+
11+
/**
12+
* Get port from environment and store in Express.
13+
*/
14+
15+
const port = normalizePort(process.env.PORT || '3000');
16+
app.set('port', port);
17+
18+
/**
19+
* Create HTTP server.
20+
*/
21+
22+
const server = http.createServer(app);
23+
24+
/**
25+
* Listen on provided port, on all network interfaces.
26+
*/
27+
28+
server.listen(port);
29+
server.on('error', onError);
30+
server.on('listening', onListening);
31+
32+
/**
33+
* Normalize a port into a number, string, or false.
34+
*/
35+
36+
function normalizePort(val) {
37+
const port = parseInt(val, 10);
38+
39+
if (isNaN(port)) {
40+
// named pipe
41+
return val;
42+
}
43+
44+
if (port >= 0) {
45+
// port number
46+
return port;
47+
}
48+
49+
return false;
50+
}
51+
52+
/**
53+
* Event listener for HTTP server "error" event.
54+
*/
55+
56+
function onError(error) {
57+
if (error.syscall !== 'listen') {
58+
throw error;
59+
}
60+
61+
const bind = typeof port === 'string'
62+
? 'Pipe ' + port
63+
: 'Port ' + port;
64+
65+
// handle specific listen errors with friendly messages
66+
switch (error.code) {
67+
case 'EACCES':
68+
console.error(bind + ' requires elevated privileges');
69+
process.exit(1);
70+
break;
71+
case 'EADDRINUSE':
72+
console.error(bind + ' is already in use');
73+
process.exit(1);
74+
break;
75+
default:
76+
throw error;
77+
}
78+
}
79+
80+
/**
81+
* Event listener for HTTP server "listening" event.
82+
*/
83+
84+
function onListening() {
85+
const addr = server.address();
86+
const bind = typeof addr === 'string'
87+
? 'pipe ' + addr
88+
: 'port ' + addr.port;
89+
debug('Listening on ' + bind);
90+
}

config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const config = {
2+
/**Default browser */
3+
defaultBrowser: process.env.Default_BROWSER || '',
4+
/**Browser excecutable path */
5+
excecutablePath: process.env.EXCECUTABLE_PATH || ''
6+
}
7+
8+
module.exports = Object.freeze(config)

0 commit comments

Comments
 (0)