aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • Software Engineering

7 Awesome JavaScript Projects To Check Out Today

  • aster.cloud
  • March 10, 2023
  • 6 minute read

The JavaScript ecosystem is rich with innovation and expanding rapidly. Here are seven tools and frameworks that point to what’s next for JavaScript.

Here are seven newer JavaScript projects you might not know about yet. These tools and frameworks cover a wide range of functionality and give us insight into emerging trends in JavaScript development. Examples include native app creation, strongly typed full-stack development, a drop-in runtime alternative to Node.js, in-browser graphics, and more. All of the projects are currently being embraced by developers, so they may not be under the radar for long. Just remember, you heard about them here first!


Partner with aster.cloud
for your next big idea.
Let us know here.



From our partners:

CITI.IO :: Business. Institutions. Society. Global Political Economy.
CYBERPOGO.COM :: For the Arts, Sciences, and Technology.
DADAHACKS.COM :: Parenting For The Rest Of Us.
ZEDISTA.COM :: Entertainment. Sports. Culture. Escape.
TAKUMAKU.COM :: For The Hearth And Home.
ASTER.CLOUD :: From The Cloud And Beyond.
LIWAIWAI.COM :: Intelligence, Inside and Outside.
GLOBALCLOUDPLATFORMS.COM :: For The World's Computing Needs.
FIREGULAMAN.COM :: For The Fire In The Belly Of The Coder.
ASTERCASTER.COM :: Supra Astra. Beyond The Stars.
BARTDAY.COM :: Prosperity For Everyone.

Tauri: A JavaScript framework for desktop apps

Tauri is a JavaScript framework for building desktop applications. Perhaps “meta-framework” is a better term. It allows you to use any front-end web framework, like React or Svelte, and turn it into a cross-platform “rich” client.

Denjell, a co-founder of Tauri, shared a bit about the incentive for developing a new desktop framework.

Tauri exists to streamline the process of building apps. So if someone is interested in building apps, they might stumble across Tauri. First of all, Tauri builds apps for Mac, Windows, and Linux. This summer, we will release a stable 2.0 that introduces iOS and Android to the mix, as well.

The development process for Tauri is quite interesting. The framework lets you build with the existing pipeline you are using, for example, SvelteKit built with Vite. Tauri can handle any stack that ultimately builds to JavaScript and HTML. It runs against the development server, generating the native desktop client for you as you go.

Denjell describes the development process as follows:

  1. Start a dev server using Svelte, Solid.js, React, Vue, etc.
  2. Configure tauri.conf to listen at that port.
  3. Start a Tauri dev window.

Although Tauri’s code is systems-oriented and built in Rust, developers interact with APIs that are almost all written in JavaScript. Tauri is a compelling approach to building native desktop applications for the universe of JavaScript developers. Unlike older frameworks that attempted similar feats, Tauri looks to deliver on the promise of multiplatform development using JavaScript.

tRPC: API development with TypeScript

tRPC is an alluring approach to building APIs backed by TypeScript. While it’s in the same family of technologies as GraphQL, tRPC is different in that it automates the interaction between the front- and back-end code. It also has superpowers derived from TypeScript’s ability to enforce typing.

Read More  Constellation – The First Always-Encrypted Kubernetes Engine

I asked tRPC creator Alex Johansson why he created tRPC.

I am a longtime fan of GraphQL (and still am) but when building my own products I often feel like it slowed me down—I was using TypeScript on both ends. Why can’t I just use the language itself rather than bringing in an external schema?

tRPC’s superpower is using what’s already there to support enforcement and association of types across the whole stack. It provides a kind of two-way type inference, and makes it work without the intermediary of metadata or an extra build step to tie the API definitions to the consuming code. When I grokked what tRPC was about, I had a feeling of simplicity suggestive of genius.

Here is a live full-stack React app built by the tRPC team using StackBlitz. tRPC provides the endpoints and the whole thing is quite simple, with just a handful of files required. Simple is good.

In the StackBlitz example, the exposed endpoints drive the information the IDE has available. For example, on the front end, the result variable is populated using a custom tRPC useQuery hook like so: const result = trpc.greeting.useQuery({ name: 'client' });. On the back end, this is handled by a tRPC router.

The front end is then able to use the variable like so: {result.data.text}. The IDE (and TypeScript compilation step) is fully aware and able to supply the type definition of result.data. Likewise, the tRPC router endpoint is aware of the front end, for example, the parameter supplied in the query.

Overall, tRPC is a unique and enticing way to build full-stack TypeScript applications. It is gaining increasing interest from the developer community, with close to 20,000 stars on GitHub as of this writing.

Bun.js: A faster runtime for JavaScript

Bun.js is a rising star in JavaScript because it attacks several fronts in a single package. I asked the framework’s creator Jarred Sumner about his motivation and hopes in creating Bun. 

Bun is an all-in-one JavaScript/TypeScript bundler, transpiler, NPM package manager and JavaScript runtime. We want to make JavaScript faster to run and simpler to write. An important part of that is ecosystem compatibility. Bun is designed as a drop-in Node.js replacement. People shouldn’t have to rewrite their code to use Bun. Many Node.js APIs like Node’s native module API (NAPI), fs, path, process, and more are built into Bun (though we’re still working on it).

Bun is both a drop-in replacement for runtimes like Node.js and Deno and an alternative for secondary tooling like webpack, Vite, and Babel. It is fast becoming known for its astounding speed in running bun install as a replacement for npm install or yarn install. Bun’s performance advantage is the result of pushing much of the code out of JavaScript and into lower-level Zig and C++.

Read More  The Cost And Sustainability Of Generative AI

Bun’s fast processing, along with its all-in-one approach, makes it a compelling alternative to conventional stacks for back-end server-side JavaScript. Developers are taking note, too, awarding the framework 40,000 stars on GitHub to date.

Civet: A modern framework for TypeScript

What if you took TypeScript and combined it with some of the ideas in CoffeeScript and blended in some extra niceties to boot?  You’d get something like Civet, a framework designed to make writing TypeScript code simpler and more powerful.

Civet creator Daniel Moore notes that “there’s a rumor going around that Civet is the new CoffeeScript, but maybe that’s a good thing. CoffeeScript brought classes, destructuring, async/await, arrow functions, rest parameters, and more to the official JavaScript spec.” 

Interestingly, Civet does not limit itself to enhancing TypeScript: it also consumes JSX. As Erik Demaine (the developer on the project responsible for most of the JSX enhancements) pointed out:

Civet takes these ideas and pushes them further, adding more highly desired language features (such as a pipe operator, many JSX improvements, and soon a pattern-matching switch), and building on top of (transpiling to) TypeScript, so it’s extremely compatible with existing tools.

In Listing 1, you can see a simple example of Civet at work (taken from the Civet documentation).

Listing 1. Simple Civet example

// Civet syntax
i .= 0
loop
  i++
  break if i > 5

// TS output
let i = 0;
while (true) {
  i++;
  if (i > 5) {
    break;
  }
}

Don’t forget that Civet can also handle JSX!  I always feel like the looping syntax in JSX is awkward, but Civet simplifies it. (Also take a look at the Civet cheatsheet for more information.)

Tabby: A terminal for Node.js

I have to admit to a long-lived affection for consoles and shells. It’s been with me since I discovered the secret world behind Commodore 64 games where I could spill the BASIC guts onto the console. Tabby is a full-featured, cross-platform, windowed terminal that replaces native apps like cmd, powershell, and Terminal. It also handles SSH a la Putty and SFTP like WinSCP.

Read More  Resolving Deployment Issues With Ts-node And Azure Development Pipelines

I asked Tabby’s creator, Eugeny, about the decision to create a new terminal application.

I originally created [Tabby] out of frustration with using Hyper (another Electron-based Terminal app) and general disappointment of other apps being stuck in the ’90s (small papercut issues like Alt-arrows not working for word traversal that quickly add up). Another inspiration was VS Code as an app that throws conventions out of the window in the name of better overall experience. My hopes would be to grow the community and eventually rewrite [Tabby] to use Tauri instead of Electron to reduce size and improve performance.

Tabby gives you all the niceties, like colors, special key handling, and copy/paste in a platform that stays consistent across environments.

Pixi.js: Performance-intensive graphics in JavaScript

Navigate to Pixijs.com and observe the effect when moving the pointer over the background image. There is a very expensive-looking liquid effect but it doesn’t seem to have a huge impact on performance. How’d they do that? By using the Pixi.js library, of course!

Pixi gives you a performance-oriented, advanced API for building interfaces with WebGL and HTML5 Canvas. Pixi has been around for a while and it’s a mature, stable library. You can find the NPM package here.

Although Pixi.js seems made to order for in-browser gaming, it’s useful anywhere you need performance-intensive graphics, including charting and fancy effects in general. Just keep in mind it’s built for 2D, not 3D.

When combined with a framework like Tauri, Pixi can be used to build desktop platforms and the like. You can play around with Pixi in the online Pixi playground.

PM2: Application monitoring for Node.js

Strictly speaking, PM2 is not a JavaScript library but a systems-oriented tool built in JavaScript. It’s a very complete application monitoring tool that you can use to do sophisticated process monitoring and management from the command line. 

Unix has monitoring and management tools like bg/fg, nohup, and screen, but PM2 does all of that and more in a user-friendly package.

PM2 has several restart strategies for handling almost any situation. Examples include starting based on a CRON time, auto-restart when stopped, and starting when a criteria (like memory consumption) is reached. It includes a --watch flag for restarting on file changes.

PM2 is worth a look if you need a tool for a variety of Node.js process management needs.

By: Matthew Tyson
Originally published at InfoWorld

Source: Cyberpogo


For enquiries, product placements, sponsorships, and collaborations, connect with us at [email protected]. We'd love to hear from you!

Our humans need coffee too! Your support is highly appreciated, thank you!

aster.cloud

Related Topics
  • Bun.js
  • Civet
  • InfoWorld
  • javascript
  • Pixi.js
  • PM2
  • Tabby
  • Tauri
  • tRPC
  • Typescript
You May Also Like
View Post
  • Software Engineering

Embedded Swift Improvements Coming in Swift 6.3

  • November 22, 2025
Visual Studio Code
View Post
  • Software Engineering

Visual Studio 2026 is here: faster, smarter, and a hit with early adopters

  • November 12, 2025
View Post
  • Software Engineering

Introducing Google Gen AI .NET SDK

  • October 24, 2025
View Post
  • Software Engineering

Julia 1.12 Highlights

  • October 13, 2025
View Post
  • Engineering
  • Software Engineering

Development gets better with Age

  • October 9, 2025
View Post
  • Software Engineering

The Growth of the Swift Server Ecosystem

  • September 27, 2025
men with computer website information and chat bubbles vector illustration
View Post
  • Software
  • Software Engineering

What is an ISV (independent software vendor)?

  • August 27, 2025
aster-cloud-erp-bill_of_materials_2
View Post
  • Software
  • Software Engineering

What is an SBOM (software bill of materials)?

  • July 2, 2025

Stay Connected!
LATEST
  • 1
    Expectations vs. Reality: The AI We Thought We’d Have in 10 Years
    • June 19, 2026
  • digital-nomad-freelancer-worker-2151205464 2
    One paperwork problem – Get your Digital Nomad Visa employment documents fast from UK, EU or Singapore
    • June 16, 2026
  • 3
    Samsung Art Store Brings Art Basel to Homes Worldwide With New Curated Collection
    • June 15, 2026
  • 4
    You Do Not Need to Invest in the IPO of SpaceX, Anthropic, and OpenAI
    • June 10, 2026
  • 5
    The consequences of relying on AI for accurate news
    • June 10, 2026
  • 6
    Connecting AI agents with unstructured data using Google Cloud Storage MCP Servers
    • June 10, 2026
  • 7
    WWDC26: Apple unveils next generation of Apple Intelligence, Siri AI, powerful parental controls, and an expansive set of software improvements
    • June 8, 2026
  • 8
    IBM and Google Cloud Announce Strategic Partnership to Scale AI with Human Expertise and AI‑Powered Delivery
    • June 4, 2026
  • Data center 9
    Data Sovereignty in Spain. It’s Not Just About the Law, It’s About Efficiency
    • June 3, 2026
  • 10
    Ink vs Pixels. What you miss versus what you are actually missing.
    • June 1, 2026
about
Hello World!

We are aster.cloud. We’re created by programmers for programmers.

Our site aims to provide guides, programming tips, reviews, and interesting materials for tech people and those who want to learn in general.

We would like to hear from you.

If you have any feedback, enquiries, or sponsorship request, kindly reach out to us at:

[email protected]
Most Popular
  • 1
    Banks race to patch new cyber vulnerabilities, and other cybersecurity news
    • May 25, 2026
  • pope-leo-xiv-cq5dam-1500.844 2
    Pope Leo XIV to Publish First Encyclical on Artificial Intelligence and Human Dignity on 25 May
    • May 22, 2026
  • 3
    Portfolio to Clients, and is Strengthened by Ongoing Project Glasswing Work
    • May 20, 2026
  • reMarkable Paper Pure 4
    Everything The reMarkable Paper Pure Actually Does
    • May 14, 2026
  • 5
    Scaling cloud and AI: Microsoft Azure’s commitment to Europe’s digital future
    • May 11, 2026
  • /
  • Technology
  • Tools
  • About
  • Contact Us

Input your search keywords and press Enter.