Skip to content

Commit 7304dc6

Browse files
changed port of express server in doc (#115)
1 parent a01fcc7 commit 7304dc6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

express-main-example/readme.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ This example uses SQLite as a database engine, since it works directly with the
1010

1111
* Install dependencies with `npm install` or `yarn install`
1212
* Run the express server with `npm start`
13-
* Open your browser in `localhost:8000` and try the example REST endpoints:
14-
* `localhost:8000/api/users` (GET)
15-
* `localhost:8000/api/users/1` (GET)
16-
* `localhost:8000/api/users` (POST)
13+
* Open your browser in `localhost:8080` and try the example REST endpoints:
14+
* `localhost:8080/api/users` (GET)
15+
* `localhost:8080/api/users/1` (GET)
16+
* `localhost:8080/api/users` (POST)
1717
* Body format: `{ username: 'john' }`
18-
* `localhost:8000/api/users/1` (PUT)
18+
* `localhost:8080/api/users/1` (PUT)
1919
* Body format: `{ username: 'john' }`
20-
* `localhost:8000/api/users/1` (DELETE)
20+
* `localhost:8080/api/users/1` (DELETE)
2121

2222
## Exercise: new model and new controller
2323

0 commit comments

Comments
 (0)