5 Awesome Libraries To Use In Your Next ReactJs Project
In this post, we will discuss 5 Reactjs libraries you can use in your next project. we will discuss its use cases and how it can help you to build...

Search for a command to run...
In this post, we will discuss 5 Reactjs libraries you can use in your next project. we will discuss its use cases and how it can help you to build...

No comments yet. Be the first to comment.
We all know javascript is the language using which we can build any type of application whether it is the web, mobile or desktop. from its birth javascript has evolved so much to make developer life easier. especially in the frontend world javascript...
Every October, the developer community buzzes with Hacktoberfest energy. PRs fly, t-shirts are earned, and GitHub turns green. But here's what nobody talks about: what happens in November? For most contributors, the answer is simple: nothing. The rep...

The debate over AI coding agents is missing the most important factor. It’s not about prompt engineering, it’s about understanding the context window. Developers are divided. One side claims coding agents suck. The other insists you’re just using the...

Learnings from a Research Paper

Lately, I have been working on a feature to capture images from media streams and scale them down to reduce their size. This helps save storage and reduce costs before uploading the images to a storage service. For this, I used Canvas to render the i...

AI helps you do more, but only if you know the basics well enough to tell it what you want.

We all know Reactjs is a UI library using which we can build user interfaces rapidly. but Reactjs ecosystem is so rich that you can build dynamic interactive web applications just by using some external libraries.
In this post, we will discuss 5 Reactjs libraries you can use in your next project. we will discuss its use cases and how it can help you to build your next project without any hiccups.
Here is the list of libraries that we are going to discuss
Let's get started.
React flow is a library to build node-based applications and it is built by webkid.io.
Let's say you want to build an application where you want to render node diagrams/flow that could be anything from static to dynamic. here we can use react flow to render node diagrams/flow and end-user can customize it, can add a new node, can update the existing node and delete the existing node.
Here is a live example of OpenMetadata A Single place to Discover, Collaborate, and Get your data right that uses React flow to render entity lineage.

React markdown is a markdown parser react component which can take string markdown and render it to the react element.
There could be a variety of use cases for this library, let's say you are building a blog application and content would be in markdown so there you can use react markdown to parse the content.
We all have used GitHub or a similar application at least once in our developer journey and know that most of the contents are in markdown format. so we can also build a tool using react markdown to create a GitHub readme profile.
Here you can see I have built a markdown previewer using react markdown. you can write markdown and see the output side by side also you can download it as a markdown file.

Code Mirror is a text editor with support for different languages and add-ons to implement the advance and extend the existing functionality.
Let's say you are building an LMS (Learning management system) and you want to provide an editor to end-users for editing code snippets that could be in any language like python, javascript, etc or format like JSON, Avro, SQL, etc.
Here you can use code mirror to build an editor that can allow end-users to play with code snippets.
Here you can see the live use case of code mirror by Carbon tool for creating and sharing beautiful images of your source code.

React Draft WYSIWYG is a rich text editor built on top of reactjs and draftjs.ready to use react component to provide rich text support in your application.
Nowadays most of the communities/publications like Hashnode, dev.to, medium, showcase and devdojo provide support for rich text content and they have built their rich text editor. but you don't have to reinvent the wheel you can use React Draft WYSIWYG directly in your application.
Here you can see the live example of React Draft WYSIWYG.

React Tippy is a lightweight tooltip component library for reactjs. it provides a tooltip element or HOC (Higher-order component) and it uses the React DOM to render tooltip.
The use case for React tippy is simple if you need to show some content using a tooltip then you should use React Tippy library.
Here you can find the live example of react tippy

And that’s it for this topic. Thank you for reading.