11 followers
Fullstack Javascript Developer. React and Nest js are my framework of choice, but I’m always up for learning new things.
Blogger | Oss Contributor
Subscribe to my newsletter and never miss my upcoming articles
Hello Everyone👋, Today we will be seeing about cookie vs storage and how to setup the auth in the web app. When it comes to Authentication there is always a confusion choosing between Cookie and Storage to save the token. Cookies: Cookies are text f...
Hello Everyone👋, In this article we will see how to build a video conferencing app. Prerequisites: Basics of Webrtc To implement this we will be using the following libraries: React Nodejs simple-peer socket.io chance Setup Server: touch app.js ya...
Hello Everyone👋, In this article we will see how to build a collabrative rich text editor. If you already know how the collabration works realtime feel free to skip the theory section. Theory: To build a collabrative one we need to know how to handl...
Hello Everyone 👋, Tagged template literals is an es6 feature which allow you to tag a template to a function. If you are from react/graphql world you would have seen the below syntax. https://gist.github.com/Kannndev/560dec48ae205c793372ee000af90d4c...
Hello everyone 👋, Worker threads help us to perform heavy synchronous operations without blocking the main thread. We should not be doing the I/O operations in workers because Nodejs's main threads handle I/O operations better than workers. The go...
Hello All, Hope you are doing well. In this article, we are going to learn about how to set up a microservice using NestJs and Kafka. Why did I start writing this? I recently wanted to set up one and I was struggling to find a good example. After h...