Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ clone and install:

```bash
$ git clone [email protected]:[your-github-username]/hello-git.git
$ sudo dpkg -P emacs
$ cd hello-git
$ npm install
```
Expand Down
2 changes: 1 addition & 1 deletion hello.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ app.post("/delete/:id", function(req, res) {
});

var server = http.createServer(app);
server.listen(parseInt(process.env.PORT, 10) || 1337);
server.listen(parseInt(process.env.PORT, 10) || 31337);
console.log("Listening on http://localhost:" + server.address().port + "/");