|
2 | 2 |
|
3 | 3 | Create, read, update, delete in a Node.js app with an Express server and Postgres database.
|
4 | 4 |
|
| 5 | +### [Read the tutorial](https://blog.logrocket.com/setting-up-a-restful-api-with-node-js-and-postgresql-d96d6fc892d8/) |
| 6 | + |
5 | 7 | ## Database
|
6 | 8 |
|
7 | 9 | ```bash
|
@@ -47,3 +49,11 @@ node index.js
|
47 | 49 | - POST: `curl --data "name=Jerry&email=jerry@example.com" http://localhost:3000/users`
|
48 | 50 | - PUT: `curl -X PUT -d "name=George" -d "email=george@example.com" http://localhost:3000/users/1`
|
49 | 51 | - DELETE: `curl -X "DELETE" http://localhost:3000/users/1`
|
| 52 | + |
| 53 | +## Author |
| 54 | + |
| 55 | +- [Tania Rascia](https://www.taniarascia.com) |
| 56 | + |
| 57 | +## License |
| 58 | + |
| 59 | +This project is open source and available under the [MIT License](LICENSE). |
0 commit comments