javascript

How to BUILD A JavaScript API IN 2023
Uncategorized

How to build a JavaScript API in 2023

Hello everyone. A big part of making things easy for developers is selecting the right tools for the job and when it comes to quickly and easily creating APIs these are my tools of choice: NodeJS, ExpressJS and Postman to test our API. UPDATE: I’ve recently started using Insomnia as my API testing tool and […]

Read More
cover for JavaScript tricks you didn't know about
Uncategorized

JavaScript tricks you didn’t know about

JavaScript is currently one of the most popular programming languages in the world. In recent years it has seen rapid improvements with the popularization of front-end frameworks and the creation of NodeJS. Today I’m going to share some of the lesser known Javascript tricks/features for the Javascript developers out there. 1- Double bang We all […]

Read More
how to read a stack trace
Explained
Tutorial

How to read a stack trace in JavaScript

Picture this: As if seeing something similar to that popping up in your console wasn’t bad enough, picture not being able to find an answer for the issue on Stack Overflow (you’d probably find a solution for this one, but I needed an example for this article😅). In those situations you might not have any […]

Read More
how to create a parallax website 2019
Tutorial

How to create a parallax website from scratch in 2019 – Part 3

Welcome to the third and final part of this series on how to create a parallax website from scratch in 2019. On the first two parts we went over how to create the HTML portion of our parallax website, then we used some CSS in order to style it and now we’ll finally add some […]

Read More
Tutorial

How to create a parallax website from scratch in 2019 – Part 2

Hello there! Today in Part 2(Part 1) of this series, we’ll dive into the styling of our website by using CSS. By the end of this tutorial, we’ll have a responsive webpage that makes use of the parallax effect. Cool stuff!😀 CSS Let’s start by creating a style file and including it into our HTML […]

Read More