Static Http Routing in Node.js
In this post, we are going to implement very basic routing without using any framework or library, just Node.js runtime and its core modules.
Part of Just Node.js, No Bullshit!
3 articles
In this post, we are going to implement very basic routing without using any framework or library, just Node.js runtime and its core modules.
In this post, we are going to create a http router for Node.js from scratch with test cases without using any thirdparty packages. We will also build a small test framework to test our router, without relying on popular tools like Mocha.
Did you ever wonder how HTTP client-server communication works? In this post, we will look at what happens behind the curtain of the HTTP Protocol with practical coding examples.