frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: Auto Favicon MCP Server

https://github.com/dh1011/auto-favicon-mcp
12•dh1011•2h ago•1 comments

Show HN: Apple Health MCP Server

https://github.com/neiltron/apple-health-mcp
177•_neil•2d ago•35 comments

Show HN: Price Per Token – LLM API Pricing Data

https://pricepertoken.com/
307•alexellman•21h ago•122 comments

Show HN: I built a biological network visualization tool

https://nodes.bio
23•jmg421•22h ago•10 comments

Show HN: Open IT Maintenance Planner

https://maintenance-planner.vangemert.dev/
10•spmvg•2d ago•3 comments

Show HN: The Montana MiniComputer

https://mtmc.cs.montana.edu/
100•recursivedoubts•19h ago•21 comments

Show HN: Sleep Blocker MCP to prevent your Mac sleep

https://github.com/cuongnguyenta/SleepBlocker-MCP
2•cuongnt3010•6h ago•0 comments

Show HN: Nia – MCP server that gives more docs and repos to coding agents

https://www.trynia.ai/
77•jellyotsiro•1d ago•64 comments

Show HN: A macOS clock that stays visible when coding or binging in fullscreen

https://cornertime.app/en
50•muvich3n•17h ago•34 comments

Show HN: Tsbro – TypeScript for the browser, no build step

https://github.com/stagas/tsbro
35•stagas•4d ago•26 comments

Show HN: Open-source macOS CLI tool for aliasing and timing command line runs

https://github.com/urtti/homebrew-ez
4•frankbyte•9h ago•1 comments

Show HN: StackSafe, Taming Recursion in Rust Without Stack Overflow

https://fast.github.io/blog/stacksafe-taming-recursion-in-rust-without-stack-overflow/
2•tison•9h ago•0 comments

Show HN: LogMerge – View multiple log files in a merged view

https://github.com/faisal-shah/pylogmerge
3•faisalhackshah•10h ago•0 comments

Show HN: Fundatio – Free macOS App to Structure Project Folders

https://apps.apple.com/us/app/fundatio-folder-structurer/id6748969665?mt=12
2•masterpos•12h ago•0 comments

Show HN: The missing link of a bookstore's tech stack

https://bookhead.net/
93•greenie_beans•2d ago•26 comments

Show HN: A code editor that integrates into the browser

https://tachicode.dev/
42•quintu5•1d ago•8 comments

Show HN: Easy Python Time Parsing

https://github.com/felixnext/python-time-helper
21•felixnext•4d ago•2 comments

Show HN: TheProtector – Linux Bash script for the paranoid admin on a budget

https://github.com/IHATEGIVINGAUSERNAME/theProtector
162•lotussmellsbad•2d ago•35 comments

Show HN: Compass CNC – Open-source handheld CNC router

https://www.compassrouter.com
172•camchaney•1w ago•44 comments

Show HN: Tinder but it's only pictures of my wife and I can only swipe right

https://trytender.app/
991•risquer•2d ago•260 comments

Show HN: BlackMagic-JS – Automatic dark mode framework that just works

https://github.com/LucAngevare/BlackMagic-js
2•LucAngevare•15h ago•0 comments

Show HN: A word of the day that doesn't suck

80•jsomers•3d ago•33 comments

Show HN: Phind.design – Image editor & design tool powered by 4o / custom models

https://phind.design
88•rushingcreek•3d ago•22 comments

Show HN: The Magic of Code – book about the wonders and weirdness of computation

https://themagicofcode.com/sample/
109•arbesman•3d ago•29 comments

Show HN: Autark – A self-contained build system for C/C++

https://autark.dev
3•adamansky•16h ago•2 comments

Show HN: I built a CSV/XLSX editor that uses JavaScript to manipulate data (OSS)

https://www.fileglance.info
2•crossing•16h ago•0 comments

Show HN: Metaessen 2.10 – Manage resources for practical use

https://metaessen.com/
3•lilerjee•17h ago•2 comments

Show HN: Configurable parser from binary message to JSON (and viceversa)

https://gitubo.github.io/bixit/
2•maxmosca•17h ago•0 comments

Show HN: Total Premium Paid on Meme Stocks Calculator

https://wastedonmemes.com/
2•goinggetthem•18h ago•0 comments

Show HN: Self-updating MCP server for official pip, uv, poetry and conda docs

https://github.com/KemingHe/python-dependency-manager-companion-mcp-server
29•keminghe•2d ago•18 comments
Open in hackernews

Show HN: Tsbro – TypeScript for the browser, no build step

https://github.com/stagas/tsbro
35•stagas•4d ago

Comments

Tade0•1d ago
I'm wondering if it would be useful/possible to run the compilation in a service worker that would intercept requests for *.ts and compile them in the worker?

I've seen an alternative approach, where the TS code is sent for compilation to a dedicated server - dismissed that idea as over engineered, but then I learned that the swc WASM package clocks in at over 5MB.

I love the name BTW.

carl_dr•1d ago
That is how this works.

> tsbro solves this by completely bypassing the browser's import system using synchronous XHR, transpile with swc wasm and a sophisticated ESM-to-CJS transpiler so that synchronous require is used everywhere:

Tade0•1d ago
Yes, but it's doing all that locally. When I ran the code it downloaded a 5MB file, namely https://esm.sh/@swc/wasm-web@1.13.2/wasm_bg.wasm.

It's also not using a service worker.

altbdoor•1d ago
I've tried this before, with a service worker[1] that intercepts TS/X-ish requests, and directing them over to sucrase[2] to compile to JS, before being loaded by the browser. Unfortunately sucrase seems to be no longer maintained.

[1]: https://github.com/altbdoor/sucrase-build-iife

[2]: https://github.com/alangpierce/sucrase

vendiddy•1d ago
I usually feel more concern whenever more features get stuffed into the browser.

It is an accumulation of complexity that, for backwards compatibility, we get stuck with.

The browser should be simple.

If the focus just stayed on making wasm better for web development, folks can use any language they want and the API surface area can stay small.

Imustaskforhelp•1d ago
Now, I am all for it except the fact that I've heard that some people have actually recommended the wayland protocol + wasm to be a better alternative really.

And I personally feel like (I may be wrong) that at the end your proposal and the wayland proposal might be the same..

The problem with wayland protocol/your proposal is the fact that such things have already been tried (java applets) and they were insecure, and accessibility was a mess, so reverting back to it does feel like a massive chaos since javascript was created to solve that problem..

I am not a js advocate, honestly I wish that ephemeral running of apps cross platform becomes genuinely easy (in my mind nix-shell comes) There is htmx which is nice too I guess but I think I still need some js to sprinkle in some more interactivity/animations.

Astro with htmx / islands architecture kinda feels the best, imagine using svelte/vue/react and htmx+golang in the same project..

pjc50•1d ago
I think what people want is the ability to write in another language while retaining first class access to the DOM without too much performance penalty, and not a boxed-in arrangement like applets.
nikisweeting•1d ago
How does this differ from esm.sh/tsx?
Foorack•12h ago
It doesn't send source code to esm.sh, but does it locally in the browser
spankalee•1d ago
Synchronous XHR is a really bad way to do this. The performance will be terrible for anything but the smallest module graphs.

But the TypeScript compiler API is synchronous, so there's a problem.

What you want to do is asynchronously walk the import graph, resolving import specifiers along the way with something like es-module-lexer or TypeScript's light parser, then when all the input files are collected, pass them through a compiler host to the compiler.

This is what the Lit team's Playground Elements do, which compile files on a worker for embeddable interactive code samples: https://github.com/google/playground-elements

rafram•19h ago
> But the TypeScript compiler API is synchronous, so there's a problem.

But it doesn't use DOM APIs, so you can run it in a worker without any issue. Monaco (the embeddable distribution of VSCode) does that.

The even bigger issue is that the TypeScript compiler is gigantic — like 10 MB, which is just a nonstarter for something you'd need to embed in every page of your site.

spankalee•17h ago
The compiler is about 730k compressed, not 10 MB. You can also lazy load it so that you show code before being able to run it.

Being in a worker only causes the synchronous fetches to not block the main thread. It's still terrible for performance as you lose all ability to load files in parallel.

It's really not that difficult to pre-traverse the import graph and fire off as many parallel fetches as the browser will allow.

rafram•17h ago
> The compiler is about 730k compressed

Thanks, you're right, I was looking at the unminified version. Minified is 3.4 MB uncompressed, 730 KB compressed. That's still crazy considering that you could avoid it by compiling your code on the server (which can be extremely fast if you disable type-checking) rather than shoving that responsibility onto your user's browser. Might be reasonable for a big web application with megabytes of other scripts, but not for a normal website.

spankalee•15h ago
Oh, I wouldn't use something like this for the main code of a page. You should absolutely just compile and bundle the TS once, rather than on every page load.

But there are cases where you want to be able to run arbitrary TypeScript in the browser - in our case it was inline editable code samples - and for that running the TS compiler efficiently in a worker is great, and 730k isn't that bad. You probably also have 500kB - 1MB for a decent code editor too.

rafram•14h ago
That's totally fair. The OP seems to be intended for your main page logic:

> TypeScript is still second-class citizen with regards to browser adoption, there is a proposal to fix that, but until then we have to use tooling, bundlers, build steps that are an impediment for when you want to quickly create a short demo or PoC.

(Of course, just for "a short demo or PoC," but will anyone be motivated to rip it out before that's no longer feasible?)

So I assumed you were talking about something similar. But using this approach to compile user code makes a lot of sense.

Zardoz84•15h ago
Read the last paragraph
WorldMaker•17h ago
Sychronous XHR also seems a symptom here of compiling Typescript to CommonJS which as a very synchronous module system is also the wrong module system to choose for a browser application. All the modern browsers support ESM great and asynchronously load them just fine.
spankalee•15h ago
The compiler API has nothing to do with the module format for the compiler itself.

The issue is that the CompilerHost and LanguageServiceHost interfaces expect a synchronous filesystem API, and downstream from that the compiler internals all expect synchronous access to files.

There's a very long standing issue open to make the API async, but I'm pretty sure it's obsolete now in the face of the tsgo work.

ohnoesjmr•1d ago
Is there a solution to get ts compiler embeddable into c++ project that uses v8, so it could compile the code on the fly?

Seems tsc itself requires node, but surely an api that takes a ts file as a string and returns a ts file as a string should be possible?

teaearlgraycold•1d ago
Perhaps you could use or build a C interface for swc, a TS compiler written in rust.
Imustaskforhelp•1d ago
they could use swc-wasm-web as tsbro also uses swc-wasm-web
teaearlgraycold•1d ago
Hot damn
orta•1d ago
tsc's code is mostly the type-checker, you want to look for a "transpiler" here, so embedding either swc, esbuild, sucrase or the like to handle the process of converting for you. I've never heard of one written in C++ but that may exist.
silverwind•23h ago
swc exists as wasm which any browser should be able to execute.
simulo•21h ago
If you are interested in TypeScript for the browser, you might also like --erasableSyntaxOnly option of typescript >5.8. The only tool needed for it is the typescript compiler itself, so toolchain is kept to a minimum.
catapart•20h ago
Neat! I've been working on a custom element for running tests in the browser, and was thinking of wiring up swc to prevent having to compile the tests from ts before running them. This library seems like it would serve better than trying to maintain something myself!