We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fff8aa commit 663a2dbCopy full SHA for 663a2db
lessons/11-productionish-server/README.md
@@ -31,10 +31,11 @@ Now when we run `npm start` it will check if our `NODE_ENV` is
31
production. If it is, we run `npm run start:prod`, if it's not, we run
32
`npm run start:dev`.
33
34
-Now we're ready to create a production server with Express. Here's a
+Now we're ready to create a production server with Express and add a new file at root dir. Here's a
35
first attempt:
36
37
```js
38
+// server.js
39
var express = require('express')
40
var path = require('path')
41
var compression = require('compression')
0 commit comments