Dive into the World of Real-Time Streaming of Data using JavascriptToday, we'll explore the basics of data streaming, why it's crucial, and how to harness its power using WebSocket to create real-time updates in your JavaScript applications. Real-time data streaming provides numerous benefits as it allows us to buil...Jan 3, 2024路2 min read
Choosing Between SQL and NoSQL Databases: Factors to ConsiderBefore going into what SQL and NoSQL mean, let's first look at a word we should be a lot familiar with, which is Database. A database is simply an organized collection of structured information, or data, typically stored electronically in a computer ...Jul 12, 2023路3 min read
Building Web Applications with Express: A GuideExpress is a backend framework that is built on Node Js which allows you to make API calls, determine the route and create dynamic pages easily. It provides various utilities that make creating a backend service with Node Js a lot easier. As a backen...May 29, 2023路4 min read
Setting up an HTTP Server and handling Requests and Responses using Node JSWhen interacting on the web, most times we find ourselves requesting some form of information embedded in a web page. That webpage is stored in a web server and we get access to it using by making HTTP request using some form of endpoint which then s...May 20, 2023路6 min read
If you are a teen and you are interested in a career in tech, then read thisThis read is for teenagers who have an interest in starting a tech career. The road is quite long and I think to be able to properly navigate the path you need to be well informed. Tech skills are one of the most in-demand job skills in the world, co...May 12, 2023路5 min read
Getting Started with JSON Server: A Quick Guide to Creating a Mock APIUsing JSON Server is a popular convention among developers who often make some form of RESTFUL call or CRUD operations to a backend service in their project. To fully understand what JSON server means let's look at the words individually. JSON stands...Apr 15, 2023路4 min read
Node Package Manager (NPM)Node Package Manager consists of files built by other developers we can use in our projects to make development easier and faster. With NPM, we can make use of code written by others for a particular purpose in our application. Imagine you are buildi...Apr 8, 2023路3 min read