-
Recently, I came across this amazing global state management system. If it had occurred to me earlier, I would never have looked for alternative state management library. It is a small, fast, and scalable bear bones state-management solution using simplified flux principles. Has a comfy API based on hooks, and isn't boilerplates or opinionated. check out their official docs for more info.
-
InfluxDB
Purpose built for real-time analytics at any scale. InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
-
TypeScript is a strongly typed programming language that is a superset of Javascript. Getting run time errors in Typescript is unlikely because It points out likely errors in the development. Combining your React with Typescript will reduce the number of errors in your code. If you have an interest in checking Typescript out I will suggest checking out their official docs or code-evolution free React and Typescript course on youtube.
-
Using Tailwind CSS, you don't have to write custom CSS to style your application because it's a utility-first framework. These days it is widely used among developers to build complex UI because of its simplicity. You can check out their official docs for more information.
-
storybook
Storybook is the industry standard workshop for building, documenting, and testing UI components in isolation
With Storybook, you can automatically visually test your components to prevent bugs and document components for reuse. It helps developers to develop faster and more easily by isolating components. It allows you to focus on one component at a time. The entire UI can be developed without having to start up a complex development stack, enter data into a database, or navigate the application. You can check out the official docs for more details on how to get started.
-
The React-hook-form library is a powerful, tiny form library without dependencies that remove unnecessary re-rendering and minimize validate computations. It also speeds up mounting and minimizes validation calculations. You can learn more about React-hook-form from their official docs.
-
Next.js enables you to create full-stack web applications by extending the latest React features and integrating powerful Rust-based JavaScript tooling for the fastest builds. To effectively use Next.js, You need to be familiar with JavaScript, React, and related web development concepts. You can learn more about Next.js from their official docs