Skip to content

Commit bb7db3d

Browse files
colincaseyedmorley
andauthored
Some general improvements to the getting started guide (#347)
* Some general improvements to the getting started guide - Includes a shutdown handler (best practice) - Uses a modern, async-aware test runner (Jest) - Aligns on the change to use port 5006 (+3 squashed commits) * Update README.md Co-authored-by: Ed Morley <[email protected]> * Update package.json Co-authored-by: Ed Morley <[email protected]> * Drop `version` + add `private: true` --------- Co-authored-by: Ed Morley <[email protected]>
1 parent e9c4cd9 commit bb7db3d

File tree

6 files changed

+3758
-1327
lines changed

6 files changed

+3758
-1327
lines changed

Procfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: npm start
1+
web: node index.js

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# node-js-getting-started
22

3-
A barebones Node.js app using [Express 4](http://expressjs.com/).
3+
A barebones Node.js app using [Express](https://expressjs.com/).
44

55
This application supports the [Getting Started on Heroku with Node.js](https://devcenter.heroku.com/articles/getting-started-with-nodejs) article - check it out.
66

@@ -15,7 +15,7 @@ $ npm install
1515
$ npm start
1616
```
1717

18-
Your app should now be running on [localhost:5001](http://localhost:5001/).
18+
Your app should now be running on [localhost:5006](http://localhost:5006/).
1919

2020
## Deploying to Heroku
2121

index.js

+24-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
11
const express = require('express')
22
const path = require('path')
33

4-
const PORT = process.env.PORT || 5001
5-
6-
express()
7-
.use(express.static(path.join(__dirname, 'public')))
8-
.set('views', path.join(__dirname, 'views'))
9-
.set('view engine', 'ejs')
10-
.get('/', (req, res) => res.render('pages/index'))
11-
.listen(PORT, () => console.log(`Listening on ${ PORT }`))
4+
const port = process.env.PORT || 5006
5+
6+
const app = express()
7+
8+
app.use(express.static(path.join(__dirname, 'public')))
9+
app.set('views', path.join(__dirname, 'views'))
10+
app.set('view engine', 'ejs')
11+
12+
app.get('/', (req, res) => {
13+
res.render('pages/index')
14+
})
15+
16+
const server = app.listen(port, () => {
17+
console.log(`Listening on ${port}`)
18+
})
19+
20+
process.on('SIGTERM', async () => {
21+
console.log('SIGTERM signal received: gracefully shutting down')
22+
if (server) {
23+
server.close(() => {
24+
console.log('HTTP server closed')
25+
})
26+
}
27+
})

0 commit comments

Comments
 (0)