PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Javascript

Javascript posts, videos, courses, and more

Upgrade Your Node.js Testing: Seamlessly Switch from Jest to Vitest

Jest and Vitest are two well-known JavaScript testing frameworks, each with its own strengths. Jest, created by Facebook, is especially popular for React applications. It provides a "ze...

Keploy ยท 10 months ago

Optimizing Node.js Code Coverage with NYC in Docker Containers

There are particular difficulties in getting NYC coverage from Node.js operating in Docker containers. This blog discusses the procedures needed to operate Node.js clusters in Docker and pro...

Keploy ยท 10 months ago

1

A simple React app: fetch GitHub users information via API

Welcome to a quick tutorial on my journey of building a React app that connects with external APIs. Today, I'm focusing on a hands-on example: fetching and displaying GitHub user data using...

Baransel ยท 1 year ago

2

How to set up your own proxy server in minutes?

Today, most websites track your online activities by capturing essential information such as IP addresses, cookies, and geolocation. All this information starts associating with the user, an...

Dhairya Shah ยท 1 year ago

6

React useState() Made Easy for Beginners

The React way of dynamically updating a websiteโ€™s content is different from Vanilla JavaScript. In JavaScript, we do it by directly manipulating DOM whereas, in React, we have a feature call...

Ashutosh Mishra ยท 1 year ago

4

13 Best React Libraries for Devs in 2023

Being a modern React developer is not only about understanding the core concepts of React but also about getting well versed with the whole ecosystem of React. This includes having the knowl...

Ashutosh Mishra ยท 1 year ago

2

A quick and easy guide to creating a sitemap for a Next.js site

If you're looking to generate sitemaps for your Next.js website, the next-sitemap npm package is a great tool to help you with that. In this tutorial, I'll guide you through the process of u...

Mike Young ยท 2 years ago

3

The Importance of a CSS Preloader and How to Implement One

In today's fast-paced world, online users have come to expect quick and seamless interactions with websites and applications. Slow loading times, while common, can leave users feeling frustr...

Supernova3339 ยท 2 years ago

4

Integrating ESRI Maps into your React App

ESRI maps are widely used in web application development because they provide a comprehensive set of tools for creating and working with maps. React is a popular JavaScript library for build...

Karthikeyan ยท 2 years ago

2

Kubernetes quick tutorial

๐Ÿ‘‹ Introduction Let's make the simplest but understandable Kubernetes example ever. Video version: {% youtube noJmOirhHKM %} We will create our first example with Kubernetes starting from sc...

Francesco Ciulla ยท 2 years ago

4

Build a Custom Toast Notification Component with ReactJs & Context API

Toast notifications are a popular way to provide users with quick feedback and alerts on actions they take on the web application. While there are many pre-built libraries available for addi...

Rishi Purwar ยท 2 years ago

6

8 Awesome VS Code Extensions for JavaScript Developers

Introduction Visual Studio Code (VS Code) is a popular, lightweight, and powerful source code editor developed by Microsoft. It has extensive support for JavaScript and TypeScript, making it...

Bobby Iliev ยท 2 years ago

3

Simulating Streaming Data for Fraud Detection with Datagen CLI

Introduction Building and testing a real-time fraud detection application requires a continuous stream of realistic data. But generating that data can be a challenge. That's why we recently...

Bobby Iliev ยท 2 years ago

1

Getting Started with JavaScript Optional Chaining

Are you writing code that needs to quickly access properties or invoke methods of an objectโ€”without worrying if the object or related data is null or undefined? If so, then you need optional...

Rahul ยท 2 years ago

What is Javascript Slice? Practical examples and guide

If you're new to coding, the term 'slice method' may be daunting. Put simply, the slice method is a powerful JavaScript tool that lets you extract sections of an array or string. It's one of...

Rahul ยท 2 years ago

React UseEffect Hook: A Definitive Guide for Beginners

The useEffect hook is one of the most important hooks of React. It allows you to perform effects in a declarative way, instead of using imperative code inside React components. It offers a s...

Rahul ยท 2 years ago

Using foreach() To Iterate Through an Array in JavaScript

If you're a JavaScript newbie or avid reader or pro or anything, you know that forEach is an incredibly useful tool. But what, exactly, is it and how does it work? forEach is a built-in arra...

Rahul ยท 2 years ago

3

Learn how to parse URLs in JavaScript in 2023

Have you ever wanted to understand how URLs work in JavaScript? If so, then you've come to the right place! In this article, we'll be diving deep into the topic of URL parsing in JavaScript...

Rahul ยท 2 years ago

3

5 ways to merge arrays in JavaScript (easy)

If youโ€™re coding in JavaScript, chances are youโ€™ve come across the need to merge two or more arrays. And while there's no one-size-fits-all approach to combining arrays, there are a few diff...

Rahul ยท 2 years ago

3

Getting Started with JavaScript Switch Case: A Beginner's Guide

Sign up to my newsletter for more tutorials!. JavaScript is a popular programming language used to create interactive websites and web applications. One of the most useful features of Java...

Baransel ยท 2 years ago

2

Why and how to create an Event Bus in Vuejs 3

Have you ever used an event bus in Vue 2 and don't know how to recreate it in Vue 3? Since I'm working on the 2.0 version of my product's UI (to be released in May) I'm publishing some techn...

Valerio ยท 2 years ago

1

Automate your personal CRM with Notion and Hazel Base

Introduction Hazelbase and Notion are two powerful tools that can be used together to create a custom CRM system. With Hazelbase, you can organize data from the internet into an identity net...

Rohith Gilla ยท 2 years ago

1

How to make Vite Hot Module Replacement work on Windows

As many of our community mamebers already know, we recently started the renovation of the Inspector dashboard UI with a fresh new design and a modern technology stack. In this article I will...

Valerio ยท 2 years ago

5

Let's make JavaScript logo with HTML and CSS! ๐Ÿ’›

Heyy Smarties! ๐Ÿ˜Ž How are you all doing? Hope you all are doing well! Today we are gonna make a JS logo with HTML and CSS it's gonna be fun! ๐Ÿฅณ And when you'll make it you need to post on T...

amenaisabuwala ยท 2 years ago

2

Unlocking the Power of Polymorphism in JavaScript: A Deep Dive

Polymorphism is a concept in object-oriented programming that allows objects of different types to be treated as objects of a common type. This allows for more flexible and reusable code, as...

Rahul ยท 2 years ago

4

How To Customize React Components with Props

In React, props are a way to pass data from a parent component to a child component. Props are essentially arguments that you can pass to a React component. They are similar to function argu...

Rahul ยท 2 years ago

2

How to create components in React (create custom components) | React Recipes

Previously I discussed creating your first react app, in this post, we'll learn more about, props, states, creating your first react component, and many things. {% bmc rahuldotbiz %} So, Wha...

Rahul ยท 2 years ago

1

How to create react elements with JSX | React Recipes

JSX is a powerful tool for building user interfaces that is easy to read and understand, and can improve the performance and maintainability of your code. In this blog post we will learn abo...

Rahul ยท 2 years ago

4

How to increase the size of the file upload in Laravel Voyager Media Manager?

Introduction Laravel Voyager is a great open-source admin panel for Laravel. It is also the admin panel currently used in Laravel Wave which is a Laravel SaaS starter kit. In this article, y...

Bobby Iliev ยท 2 years ago

4

32 best JavaScript snippets (one-liners) in 2023

Hi there, my name is Rahul and I am 18 years old. My goal is to become a successful developer, and I am interested in building web apps with frontend technologies. Today, I'd like to share s...

Rahul ยท 2 years ago

2

Loading More Content