Mako – fast, production-grade web bundler based on Rust

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

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.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • mako

    A lightweight Wayland notification daemon

    A couple more:

    https://wayland.emersion.fr/mako/

    https://makoframework.com/

    It can be hard sometimes to come up with names that aren't already in use. I think as long as it's clear in the description what it is, and the same name isn't shared for two projects that do approximately the same thing, maybe it's not so bad.

  • 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.

    InfluxDB logo
  • bun

    Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one

    It might not be pretty, but it works super fast, and it only took me a couple of hours to convert the whole thing...

    [0] https://bun.sh

  • mako

    Bitcoin node written in C (by chjj)

    Sadly, I only discovered that one after I named this project: https://github.com/chjj/mako

  • esbuild

    An extremely fast bundler for the web

    Are you familiar with Java?

    If so, a web bundler is like a build tool which creates a single fat jar from all your source code and dependencies, so all you have to "deploy" is a single file... except the fat jar is just a (usually minified) js file (and sometimes other resources like a css output file that is the "bundled" version of multiple input CSS files, and other formats that "compile" to CSS, like SCSS [1] which used to be common because CSS lacked lots of features, like variables for example, but today is not as much needed).

    Without a bundler, when you write your application in multiple JS files that use npm dependencies (99.9% of web developers), how do you get the HTML to include links to everything? It's a bit tricky to do by hand, so you get a bundler to take one or more "entry points" and then anything that it refers to gets "bundled" together in a single output file that gets minified and "tree-shaken" (dead code elimination, i.e if you don't use some functions of a lib you imported, those functions are removed from the output).

    Bundlers also process the JS code to replace stuff like CommonJS module imports/exports with ESM (the now standard module system that browsers support) and may even translate usages of newer features to code that uses old, less convenient APIs (so that your code runs in older browsers).

    I've been learning a lot about this because I am writing a project that is built on top of esbuild[2], a web bundler written in Go (I believe Vite uses it, and Vite is included in the benchmarks in this post). It's extremely fast, so fast I don't know why bother writing something in Rust to go even faster, I get all my code compiled in a few milliseconds with esbuild!

    Hope that helps.

    [1] https://sass-lang.com/documentation/syntax/

    [2] https://esbuild.github.io/

  • mako

    An extremely fast, production-grade web bundler based on Rust. (by umijs)

    the issue show that Mako plans to support the unplugin system, it's a compat solution for existing ecosystem.

    https://github.com/umijs/mako/issues/1238

  • parcel

    The zero configuration build tool for the web. 📦🚀

    You forgot Parcel, which is working on v3 https://parceljs.org/

  • oxc

    ⚓ A collection of JavaScript tools written in Rust.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • esm.sh

    A fast, smart, & global CDN for modern(es2015+) web development.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Optimising package size for Typescript AWS Lambda functions using serverless-esbuild

    1 project | dev.to | 18 Jul 2024
  • Building NPM packages for CommonJS with ESM dependencies

    3 projects | dev.to | 15 Jul 2024
  • Esbuild implements the JavaScript decorators proposal

    1 project | news.ycombinator.com | 7 May 2024
  • Effortless Function as a Service: A Simple Guide to Implementing it with Query

    2 projects | dev.to | 21 Dec 2023
  • How to run TypeScript natively in Node.js with TSX

    1 project | dev.to | 28 Nov 2023

Did you konow that C is
the 7th most popular programming language
based on number of metions?