DEV Community

Justin
Justin

Posted on

 

HTTP Error Code Cheat Sheet

Working on some more cheat sheets, if there is a subject or topic you'd like to see Cheat Sheets for let me know in the comments section and I'll make that happen.

Alt Text

Alt Text

Alt Text

Alt Text

Download as PDF:
shorturl.at/nuxOR

Oldest comments (10)

Collapse
 
codebyjustin profile image
Justin

Your very welcome :D

Collapse
 
dansilcox profile image
Dan Silcox

Nice, also the short version - not sure who originally came up with it!

1xx - information
2xx - successful
3xx - redirections
4xx - you screwed up
5xx - we screwed up

Collapse
 
dansilcox profile image
Dan Silcox

That said, w3.org/Protocols/rfc2616/rfc2616-s... isn't exactly long :)

Collapse
 
codebyjustin profile image
Justin

Lol, That's great. I guess I'll have to make the short version xD

 
codebyjustin profile image
Justin

Those are some great ideas :D
I'll put it on my todo list.

 
codebyjustin profile image
Justin

I got you fam :)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.