Three JavaScript Projects You Should Know About

If you’ve been paying attention to JavaScript these last few years, you would have noticed the high-number of frameworks, libraries, and tools being released. It seems there’s something new released every single day. Some call it framework hell.

Whether or not you’ve been paying attention to all of this, here are three very interesting projects that may spark your interest.

Mermaid

The first on this list is Mermaid, “a JavaScript-based diagramming and charting tool that uses Markdown-inspired text definitions and a renderer to create and modify complex diagrams.” It is an incredible tool that would be useful to every developer that writes any sort of documentation.

Fun fact: Mermaid was nominated and won the JS Open Source Awards (2019) in the category “The most exciting use of technology.”

If you are familiar with Markdown you should have no problem learning Mermaid’s Syntax.

Mermaid pie chart example:
pie "Dogs" : 386 "Cats" : 85.9 "Rats" : 15

This pie chart is accomplished with the following markdown:

pie
"Dogs" : 386
"Cats" : 85.9
"Rats" : 15

Check out Mermaid on Github.

Qwik

Next up on our list is Qwik, a “new approach to performance optimization.” Qwik brings in an entirely new rendering paradigm called resumability, which means that Qwik “serializes the application’s state and framework state into HTML upon rendering the application.” This means your application’s PageSpeed score should be near perfect no matter how big and complex your JavaScript code is.

Another unique feature of Qwik is the ability to lazy load the code. This means that JavaScript will never load, nor execute until it is needed. For example, if you have an HTML <button> with an onclick handler, Qwik will only execute the code from the onclick handler when the button is clicked, thus “the amount of code downloaded to the client is proportional to the complexity of the user interaction, not the size of all components on the current route.” If you’re already a React developer, then you already know how to build Qwik applications, as it’s built on top of JSX, functional components, and reactivity.

Take a look at the example from the Qwik website:

import { component$, useStore } from '@builder.io/qwik';

export const MyCmp = component$((props) => {
	const state = useStore({ count: 0 });

	return (
		<>
			<span>
				Hello, {props.name}: {state.count}
			</span>
			<button onClick$={() => {state.count++ }}>
				Increment
			</button>
		</>
	);
});

It looks very familiar, no?

If you want to learn more about Qwik, you might find this presentation from Misko Hevery (creator of Angular and AngularJS) helpful: How to Remove 99% of JavaScript from the Main Thread.

Bun

As of writing this article, Bun is a new JavaScript runtime with a native bundler, transpiler, task runner, and npm client built-in. The goal of Bun “is to run most of the world’s JavaScript outside of browsers, bringing performance and complexity enhancements to your future infrastructure, as well as developer productivity through better, simpler tooling.” Rather than using V8, Bun uses the JavaScriptCore engine, which performs a little faster than V8. Bun is also written in the Zig programming language.

According to the website, Bun was built from scratch to focus on three main things:

  • Start fast (it has the edge in mind).
  • New levels of performance (extending JavaScriptCore, the engine).
  • Being a great and complete tool (bundler, transpiler, package manager).

On the Bun website, we see the following graph showing Bun to be significantly faster than Node and Deno:

bun js speed

Aside from the speed, Bun is very exciting because of what it offers to simplify your life as a developer. Check it out:

  • Web APIs like fetch, WebSocket, and ReadableStream are built-in
  • node_modules: bun implements Node.js' module resolution algorithm, so you can use npm packages in Bun. ESM and CommonJS are supported, but Bun internally uses ESM
  • In Bun, every file is transpiled. TypeScript & JSX just work
  • node:fs, node:path: Bun natively supports a growing list of Node.js core modules along with globals like Buffer and process

Do keep in mind that Bun is experimental software. Use at your own risk!

Conclusion

There we have it, three neat JavaScript projects you should be aware of. Do you have a favorite JavaScript project? Let us know in the comments below, we’ll be happy to check it out!

comments powered by Disqus

Related Posts

Creating a Real Time Chat Application with React, Node, and TailwindCSS

In this tutorial, we will show you how to build a real-time chat application using React and Vite,as well as a simple Node backend.

Read more

The Importance of Staying Active as a Software Developer

In today’s fast-paced digital world, developers often find themselves glued to their screens for extended periods. While this dedication is commendable, it comes with its own set of challenges.

Read more

JavaScript DOM Mastery: Top Interview Questions Explained

Mastering the Document Object Model (DOM) is crucial for any JavaScript developer. While many developers rely heavily on front-end frameworks, the underlying DOM concepts are still important.

Read more