Hacker News with Generative AI: TypeScript

In Defence of TypeScript Enums (yazanalaboudi.dev)
In the past few years, there’s been a growing trend of criticizing TypeScript’s enum feature.
Show HN: TypeScript as a proof assistant for intuitionistic propositional logic (github.com)
TypeScript can be used just like a proof assistant (for intuitionistic propositional logic)!
Typed Japanese (github.com/typedgrammar)
If you can write TypeScript, you can understand Japanese!
TypeScript is Like C# – A Backend Guide (chrlschn.dev)
If you already know TypeScript, then learning C# is easy! This guide walks you through the similarities (and differences) between TypeScript and C#.
Show HN: Minimal JavaScript/TS framework that made us 10k in 10 days (github.com/The-Pocket-World)
Enable LLMs to Program Themselves.
Show HN: AgentKit – JavaScript Alternative to OpenAI Agents SDK with Native MCP (github.com/inngest)
Build multi-agent networks in TypeScript with deterministic routing and rich tooling via MCP.
Valibot v1 – The 1 kB schema library for TypeScript (valibot.dev)
I am excited to announce the release of Valibot v1. Valibot is a modular and fully tree-shakable schema library that helps you describe and validate your data with a type-safe and easy-to-remember API. As a 1 kB alternative to Zod, Valibot is perfect for validating forms and securing backend-frontend communication with a single source of truth.
TypeScript-go is now a performance benchmark for the Go compiler (googlesource.com)
Choosing Languages (steveklabnik.com)
The other day, Microsoft announced that they are re-writing the TypeScript compiler in Go. A lot of people had a lot of feelings about this. I did too, but in a different way than many other people.
TypeScript is being ported to Go – interview with Anders Hejlsberg (youtube.com)
Why Go? (github.com/microsoft)
Language choice is always a hot topic! We extensively evaluated many language options, both recently and in prior investigations. We also considered hybrid approaches where certain components could be written in a native language, while keeping core typechecking algorithms in JavaScript. We wrote multiple prototypes experimenting with different data representations in different languages, and did deep investigations into the approaches used by existing native TypeScript parsers like swc, oxc, and esbuild.
A 10x Faster TypeScript (microsoft.com)
Today I’m excited to announce the next steps we’re taking to radically improve TypeScript performance.
Bundling MCP Servers in Every OpenAPI –> TypeScript SDK (speakeasy.com)
It’s no longer enough for businesses to make their services available to developers. A great development experience also hinges on the ability for AI to access and integrate with available APIs. That’s why starting today, every TypeScript SDK generated by Speakeasy now bundles a runnable Model Context Protocol (MCP) (opens in a new tab) server enabling you to expose your API to the growing landscape of AI agents.
How to Implement a Cosine Similarity Function in TypeScript (alexop.dev)
To understand how an AI can understand that the word “cat” is similar to “kitten,” you must realize cosine similarity. In short, with the help of embeddings, we can represent words as vectors in a high-dimensional space. If the word “cat” is represented as a vector [1, 0, 0], the word “kitten” would be represented as [1, 0, 1]. Now, we can use cosine similarity to measure the similarity between the two vectors.
Node just added TypeScript support (deno.com)
Node.js recently added native TypeScript support in version 22.6 (stabilized in 23.6), a welcome enhancement simplifying setups for TypeScript users. This has sparked questions within the community about how Node’s new capabilities compare with Deno’s existing TypeScript integration.
Show HN: Testeranto – the AI driven test framework for TypeScript projects (npmjs.com)
🚧 WARNING: Testeranto is still under development and is not ready for production yet. 🚧
An ode to TypeScript enums (disintegrator.dev)
It’s official, folks. TypeScript 5.8 is out bringing with it the --erasableSyntaxOnly flag and the nail in the coffin for many of the near-primordial language features like Enums and Namespaces. Node.js v23 joined Deno and Bun in adding support for running TypeScript files withouth a build step. The one true limitation is that only files containing erasable TypeScript syntax are supported. Since Enums and Namespaces (ones holding values) violate that rule since they are transpiled to JavaScript objects.
Porting Doom to TypeScript Types Took 3.5T Lines, 90GB of RAM (tomshardware.com)
MichiganTypeScript: A WebAssembly runtime implemented in TypeScript types (github.com/MichiganTypeScript)
This is a WebAssembly runtime implemented purely in TypeScript types.
TypeScript types can run DOOM [video] (youtube.com)
Standard Schema: A common interface for TypeScript validation libraries (standardschema.dev)
Standard Schema is a common interface designed to be implemented by JavaScript and TypeScript schema libraries.
Show HN: An open-sourced TypeScript agent framework (github.com/The-Pocket-World)
Build enterprise-ready AI systems—fast, modular, and vendor-agnostic.
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility (socket.dev)
Deno continues to evolve as a modern runtime for JavaScript and TypeScript, and with the release of version 2.2, it introduces several updates that improve developer experience, enhance dependency management, and strengthen compatibility with the Node.js ecosystem.
Scryer Prolog NPM package (experimental) (github.com/guregu)
This is a Typescript package that embeds Scryer Prolog.
Show HN: A no-build fullstack SSR TypeScript web framework (jsr.io)
FullS(tack)oak (FullSoak for short) is a modern (born 2025), no-build TypeScript fullstack framework for building fast web applications with a shallow learning curve. At its core is the Oak http server framework which is inspired by Koa (one of the popular Node.js http frameworks).
Ohm: A user-friendly parsing toolkit for JavaScript and TypeScript (ohmjs.org)
Ohm is a parsing toolkit consisting of a library and a domain-specific language. You can use it to parse custom file formats or quickly build parsers, interpreters, and compilers for programming languages.
Ask HN: Would you pay for 100x faster TypeScript type checker? (ycombinator.com)
As the title says, would the benefit of having a let's say ~100x faster TypeScript type checking be so great that you'd pay for it? If so, how much?
Show HN: libmodulor – An opinionated TS library to build multi-platform apps (github.com/c100k)
An opinionated TypeScript library to create business oriented applications.
A Minimalist TypeScript for C (ycombinator.com)
A Minimalist TypeScript for C. Cp1, or C+1, or C plus 1 programming language adds only the bare essentials to C language that allows you to output C codes and able to use namespaces, modules, methods on enums/structs, auto variable deduction and more.
TypeScript enums: use cases and alternatives (2ality.com)
In this blog post, we take a closer look at TypeScript enums: