Top 11 JavaScript Fullstack Frameworks

They are frameworks that allow developers to build web applications using JavaScript on both the front-end (client-side) and back-end (server-side) of the application.

HTTP Versions: HTTP/1.x, HTTP/2, HTTP/3

HTTP is a key topic in web development and web performance optimization. Understanding the differences between the versions of HTTP can help you choose the best option.

May 22, 2023#webdev#comparison

Top 6 end-to-end testing frameworks for web apps

End-to-end testing is essential for web development, as it can detect bugs and errors that may not be visible in unit or integration testing; Playwright, Cypress, Puppeteer, Selenium.

Top 6 JavaScript Search Libraries

They can help you create fast and user-friendly search experiences for your web applications, without relying on external search services or databases.

Top 6 Open-Source AI Large Language Models

Following LLMs are publicly available for anyone to use, study, or modify. They are usually trained on large datasets of text from various sources and domains.

May 19, 2023#AI#ML#LLM

How to extend interfaces in TypeScript

When one interface extends another, it inherits all the members (properties and methods) from the parent interface and can also add its own members or override the ones inherited.

May 17, 2023#typescript#how-to

Top 6 authentication methods web developer must know

Auth methods between clients and servers are crucial for ensuring secure and trusted communication in various online systems, such as websites, applications, and network services.

May 14, 2023#webdev#lists

How to wait for multiple promises in JavaScript

It is common to encounter situations where you need to make multiple asynchronous requests to an API or a database and wait for all of them to complete before taking further actions.

May 10, 2023#javascript#how-to

TypeScript optional, nullable, and default parameters

These features enable you to write more flexible and robust code by allowing for the possibility of "undefined" or "null" values, and by providing default values when no value is passed in.

May 09, 2023#typescript#how-to

How to check if string contains substring in JavaScript

You can use either .includes(), .indexOf(), .search(), .match(), regular expressions, or 3rd-party libraries to check if string contains substring.

May 02, 2023#javascript#how-to