⭐ Build REST API for Beginners with Node.js + Express.js + TypeScript. 📖 Fully Explained 🔍

preview_player
Показать описание

00:00 Intro
00:48 What is HTTP Request/Response?
27:47 Router
36:00 Middleware
51:11 Error Handling
54:57 Finish Up REST API
1:04:43 Data Validation
1:09:04 Summary

I am using Visual Studio Code and Amazon CodeWhisperer as my development tool. Some commands I used in the video may only work in Linux / macOS. If you are using Windows, please see the GitHub link below for the Windows commands.

*** Note ***
Рекомендации по теме
Комментарии
Автор

🎉🎉I learnt so much about express and nodejs, I recently started using typescript

Elizabethomo
Автор

For the first i saw developer using Light theme mode 😅
any ways thanks for this awesome video ❤

NoorAziz-jm
Автор

This is an epic bro, I really love your explanation as well as the way you present it. Thank you so much.

androidoine
Автор

Absolutely great teaching methodology. Thank you for the effort.

maurillekobri
Автор

To the point explanation. Good work. Thank you

tanomenossorvas
Автор

bro awesome content. Thanks so much. just a suggestion editor white background is not good to see, please use black background

pankaj_
Автор

Can I run the node.js + express.js in the docker container and uploaded to the cloud VM (e.g. AWS EC2) to see whether the api can called by Python in my laptop?

kachunwong
Автор

Which extension you are using which show full line hints?

AMITJOSHIp
Автор

i liked and the following videos looks awesome thanks

vandark
Автор

The timestamp implementation seems not to work anymore. I found this fix (inserted in app.ts):
declare module 'express-serve-static-core' {
interface Request {
timestamp?: number;
}
}
I put it at the bottom and it worked just fine, although the suggestion was to insert directly below imports.

I also changed the logging of the timestamp to new for human readability.

csIn