Skip to content
  • AI
  • Github

Scratch that

Bite sized bits

  • AI
  • Github
  • ⤫

Browsing Category Javascript

Cross-Origin Resource Sharing (CORS)

Cross-Origin Resource Sharing (CORS) is a security feature implemented by web browsers that prevents web pages from making requests to a different domain than the one that the web page is served from. This is known as the “same-origin policy”. For example, if a web page is served from “https://example.com”, it will not be able

Posted by Posted on

Making Your Website Accessible for All Users

As a web developer, you want to create websites that are accessible to all users, regardless of their abilities or disabilities. By making your website accessible, you can ensure that everyone has the opportunity to access and use your content and services. In this blog post, we’ll discuss what web accessibility is, and how you

Posted by Posted on

Building a Design System for Consistent, High-Quality User Interfaces

As a designer, you want to create user interfaces that are consistent, high-quality, and easy to use. To achieve this, you can use a design system, which is a set of standards, guidelines, and resources that help you design and build user interfaces. In this blog post, we’ll discuss what a design system is, and

Posted by Posted on

End-to-end testing for react applications

As a React developer, you want to ensure that your applications are stable and reliable, and provide a smooth user experience. One way to do this is by setting up end-to-end (E2E) testing for your React applications. In this blog post, we’ll discuss what E2E testing is, and how you can set it up for

Posted by Posted on

Top 3 Software Engineering Best Practices for JavaScript Developers

As a JavaScript developer, you want to write high-quality, maintainable code that is well-suited to the needs of your project and your team. To achieve this, it’s important to follow best practices for software engineering. In this blog post, we’ll discuss some of the top software engineering best practices for JavaScript developers, and provide examples

Posted by Posted on

Coding Challenge – sort and group product orders

Sorting and grouping data is a common task in software development. In this blog post, we’ll demonstrate how to sort and group orders and products from a JSON file using JavaScript. We’ll provide a sample JSON file and a code example to illustrate the techniques and concepts involved. Parsing the JSON data The first step

Posted by Posted on

RXJS Operators

RxJS, the popular library for reactive programming using observables, has recently released a new version that includes a number of powerful new operators. In this post, we’ll take a look at some of the most exciting ones and show you how to use them in your own code. First, let’s start with the pipe operator,

Posted by Posted on
0

Rxjs Basics

RxJS is a popular library for reactive programming in JavaScript. It provides a wide range of operators and utilities for working with streams of data, allowing developers to easily manipulate and transform data in real time. Here are some basic examples of how to use RxJS to create and manipulate streams of data: Creating observables

Posted by Posted on
0

Reactive Programming

Reactive programming is a programming paradigm that allows developers to build applications that can react to changes in data as they occur. In JavaScript, this is typically achieved using observables, which are objects that emit a stream of events that can be subscribed to and processed by other parts of the application. For example, consider

Posted by Posted on
0

How to create a react components library with storybook?

Here are the steps to create a React components library with Storybook: Create a new project using the create-react-app command. This will create a new project with a basic React app, including all the necessary dependencies and scripts. Copy code npx create-react-app my-components-library Install the @storybook/react package. This package contains the necessary tools to build

Posted by Posted on
0

Posts pagination

Page 1 Page 2 Page 3
  • Algorithms
  • Front-end
  • Javascript
  • Philosophy
  • Project Management
  • Psychology
  • Science
  • Technology
  • Uncategorized
Copyright © 2025 - Scratch that // By - Deepak Anandrao