HN user

StellaMary

21 karma
Posts20
Comments23
View on HN
ghidora.hyperforge.in 2mo ago

Show HN: Ghidora build system, An nx/Bazel alternative

StellaMary
1pts0
shyam20001.github.io 7mo ago

Show HN: My own stolen JavaScript Server powered by Rust

StellaMary
4pts0
github.com 7mo ago

Show HN: Brahma-React – Switch Next JavaScript Vulnerable API to Rust

StellaMary
1pts0
github.com 7mo ago

Write ReactJS in Rust

StellaMary
12pts14
github.com 7mo ago

Show HN: Write JavaScript code in Rust to achieve 200k req/s

StellaMary
2pts0
shyam20001.github.io 8mo ago

Show HN: Now everyone can write JavaScript API in Rust

StellaMary
1pts1
shyam20001.github.io 8mo ago

This Framework coverts your JavaScript code to Rust

StellaMary
1pts1
www.npmjs.com 8mo ago

Show HN: Write Node.js code in Rust to achieve massive HTTP throughput

StellaMary
12pts11
www.reddit.com 8mo ago

Swapping Node.js HTTP Layer to Rust Tokio Runtime

StellaMary
2pts0
github.com 8mo ago

Write Express JS code that runs on Rust

StellaMary
8pts6
shyam20001.github.io 8mo ago

Show HN: Write JavaScript code that Runs on RUST hits 1M req/s

StellaMary
6pts1
shyam20001.github.io 9mo ago

Show HN: I rewrote the express library to rust

StellaMary
3pts1
web-frameworks-benchmark.netlify.app 9mo ago

Show HN: Here we go again μWs-JS against its new rival Brahma-JS

StellaMary
1pts1
github.com 10mo ago

Say Goodbye to Node.js HTTP. Meet Brahma-JS an Ultra HTTP

StellaMary
1pts1
news.ycombinator.com 10mo ago

Show HN: Created a Node.js's addon that can handle 1M req/s

StellaMary
7pts0
news.ycombinator.com 11mo ago

Any one with Lobsters.rs invite plz accept me

StellaMary
5pts0
xlsx-lite.onrender.com 11mo ago

Web Assembly or JavaScript when it comes to large xlsx file uploads

StellaMary
3pts0
shyam20001.github.io 11mo ago

Show HN: Parse Excel files in browser using Rust+WASM (100-MB in seconds)

StellaMary
3pts3
www.npmjs.com 11mo ago

Show HN: A new JavaScript runtime for writing high-performance web apps in Rust

StellaMary
1pts1
www.npmjs.com 11mo ago

Running Single-Core vs. Multi-Core Web Servers on Node.js with Rust

StellaMary
2pts0

Most of companies don't even know that node js npm packages has build scripts which do rely on python c++ build tools. That's y. This saves lots of time. Also binaries once checked and published cannot be edited in npm / all we can do is just remove that version fully if below 300 downloads.

Here you go https://web-frameworks-benchmark.netlify.app/result?f=hono-d...

Also regarding the performance its written using Rust and raw Hyper library unlike deno runtime no overhead coz I just build a complex rust native addon for node js that allows every one to harness the true power of Rust's Tokio and hyper.

Regarding hono it's my fav and edge based. The Framework I created allows you to run true multi thread Fullstack app on a instance like running raw c++ or golang frameworks. My framework gives you true parallelism without Node.js cluster. Just give a try.

No hate mate it's real that ai can really code anything u need but the brutal fact is you need to be much smarter to validate its code all I can see is skill and xp issue. But as Rust node Js dev I made ultra fast http framework using AI with just 200 lines of code it had beaten fastify hono and express. It's all possible just because of my xp in ffi and Rust with node js Architect lessons.

https://www.npmjs.com/package/brahma-firelight

It's been a long time since 2023, when Bun.js arrived and disrupted the JavaScript world. During that time, I was working on something unusual—something that encourages all JS developers to write API code that actually runs on top of Rust.

I gave it my best and eventually published this framework on npm. Many people asked for async support, and after countless sleepless nights, I finally achieved it. Meet Brahma-JS (brahma-firelight) one of my finest creations that replaces Node.js tcp / http module with Rust's Tokio and Hyper library inspired from Deno runtime.

``` Running 10s test @ [http://127.0.0.1:2000/hi](http://127.0.0.1:2000/hi) 1 threads and 200 connections Thread Stats Avg Stdev Max +/- Stdev Latency 1.51ms 479.16us 7.89ms 78.17% Req/Sec 131.57k 9.13k 146.78k 79.00% 1309338 requests in 10.00s, 186.05MB read Requests/sec: 130899.58 Transfer/sec: 18.60MB

``` Oh sure, just another framework casually doing 130k+ requests/sec. No big deal. Totally normal. Definitely not powered by a Rust beast disguised as friendly JavaScript.

Now I have released v1.5 A stable release with support for Mac, Linux and Windows too. You can give a try by starting

``` npm i brahma-firelight

```

Source : https://www.npmjs.com/package/brahma-firelight

Parsing .xlsx in JS with libraries like SheetJS often means:

Loading the whole 100 MB file into memory Blocking the main thread Tabs freezing, fans spinning xlsx-lite does it differently:

Streams ZIP entries (no inflate-to-Vec) Async + cooperative yielding — browser paints while parsing Batch-based parsing (rows in chunks) Memory stays flat, UI stays responsive

I built Brahma-JS to bridge the gap between Rust's performance and the ease of JavaScript. It's an ultra-low latency runtime written in Rust on top of Tokio and Hyper.

The idea is to give developers a way to get Rust's speed and memory safety without having to rewrite their application logic. It's a plug-and-play engine that works across Node, Deno, and Bun.

All the heavy lifting—like parsing request bodies and headers—happens in Rust. The benchmarks are promising: on a tiny AWS t2.micro instance, I hit 33.2k requests per second during a load test.

I haven't shared the full codebase yet but will soon. You can find the repo here:

https://github.com/Shyam20001/rsjs