-
Creating HTTP Server from scratch with NodeJS Part II: Handling TCP Streams
In Part I, we created our first, very basic HTTP server using Node.js’s
net
module. We learned how to accept raw TCP connections. -
Building a RestAPI Client with TypeScript and TanStack Query for Plone 6 [GSoC'23]
Recently, I embarked on a project that aimed to create a RESTful API client written in TypeScript, leveraging the power of TanStack Query, to interact with a Plone 6 backend. This project not only addressed the need for modernizing data fetching but also made it versatile for use in various front-end frameworks like React, Vue, Solid, and Svelte. In this blog post, I’ll share my journey and the key highlights of this project.
-
Creating HTTP Server from scratch with NodeJS Part I
In this post, we will be bulding a simple HTTP server from scratch using NodeJS and in doing so we will review the basic structure of HTTP requests and response and get a basic knowlege of how HTTP server works.