In this repository you learn the basics about JavaScript and express. Basic knowledge of programming in any language is required.
It is divided in two exercise sections:
- JavaScript exercises from
consol.log()
to array transformation with.reduce()
. - Express from
GET
endpoints to error handlers
- Clone this repository -
git clone
- Create and checkout your own branch -
git checkout -b <your-branch-name>
(git branch, git checkout) - Start the express server with
npm start
from the root directory - Start Postman and import the respective collection: - Import Postman Collections
javascript-exercises.postman_collection.json
express-exercises.postman_collection.json
- Solve the exercises in the respective .js files
- JavaScript
src/exercises/node-exercises.js
- Express
src/exercises/express-exercises.js
- JavaScript
To execute your code, run the exercise request in Postman. The exercises build on top of each other and link to resources that could help to solve them.