nowfound

Alternatives

Products that do what Civet the CoffeeScript of TypeScript v0.4.20 does

I've spent the past few months building a language that is 99% compatible with CoffeeScript and 99% compatible with TypeScript. Essentially a reimagined CoffeeScript for 2022 that finished ES6s partially completed features, adds TypeScript support, and keeps the niceties of CoffeeScript. Example features: - Const assignment shorthand user := getUser() --- const user = getUser() - Parens optional and braceless nesting if x > 0 return --- if (x > 0) { return } - &fn shorthand nums.map &+1 --- nums.map($=>$+1) And a heck-ton more: https://github.com/DanielXMoore/Civet A big…

  1. 1

    The last TypeScript release built on JavaScript

    Mar 2026 · typescriptlang.org

  2. 2AA

    Yes, another reactive UI framework for JavaScript. Bear with me, please... :-) I 'invented' the concept for this back in 2011, and it was used (as a proprietary lib) in various startups. Even though many similar open source libs have been released since, and boy have I tried a lot of them, none have been able to capture the elegance and DX of what we had back then. I might be biased though. :-) So I started creating a cleaned-up, modern, TypeScript, open source implementation for the concept about five years ago. After many iterations, working on the project on and off, I'm finally happy…

    2025 · aberdeenjs.org

  3. 3DC
  4. 4EM

    Hi HN! I thought you might enjoy this even if you don't know much about Elixir. `es6_maps` is a small library that introduces a "shorthand" map creation syntax, similar to shorthand object construction in JavaScript/TypeScript. For those unfamiliar with Elixir, the most interesting aspect might be how it achieves this. `es6_maps` takes advantage of BEAM (Erlang's VM) hot-reload capabilities to amend the Elixir compiler bytecode at runtime, adding functions that expand the shorthand syntax for further compilation. I think it's a nice showcase of the power you can wield (with care) when…

    2024 · github.com

  5. 5WB

    2012 · larryng.github.com

  6. 6CA

    We've been building Crust (https://crustjs.com/), a TypeScript-first, Bun-native CLI framework with zero dependencies. It's been powering our core product internally for a while, and we're now open-sourcing it. The problem we kept running into: existing CLI frameworks in the JS ecosystem are either minimal arg parsers where you wire everything yourself, or heavyweight frameworks with large dependency trees and Node-era assumptions. We wanted something in between. What Crust does differently: - Full type inference from definitions — args and flags are inferred automatically. No…

    Mar 2026 · github.com

  7. 7
    Stitches135

    The modern CSS-in-JS library with near-zero runtime.

    2020

  8. 8BP

    Fir leverages Golang’s standard library html/template package and a bit of alpinejs to allow building reactive UIs. You start with plain old html and use alpinejs to enhance it to bring no-page-reload interactivity to web apps. The Fir toolkit is designed for Go developers with moderate html/css & js skills who want to progressively build reactive web apps without mastering complex web frameworks. It includes a Go library and an Alpine.js plugin. How it works ? On receiving user-interactions the fir server re-renders html templates and sends it over the wire where the fir client…

    2023 · livefir.fly.dev

  9. 9
    Reflag117

    First ever self-cleaning feature flags for TypeScript

    Sep 2025

  10. 10AS

    Took a stab at building my own string diffing JS package. I built an interactive demo for TypeIt’s website (https://typeitjs.com/build-your-own) a while back. The approach I took to handle user input necessitated a way to calculate the difference between the versions of a user’s text input. I searched around for a package to help me out and found a couple of good ones (like fast-diff), but I either didn’t really like their API or didn’t want to take on a huge new dependency. Instead, I thought I’d give it a shot myself (famous last words). I dove into it having no real formal…

    2022

  11. 11CA

    Hey guys! I’ve been working on a web app called CodeCafé—a collaborative, browser-based code editor inspired by VS Code and Replit, but with no downloads, no sign-up, and zero setup. You just open the link and start coding—together. The frontend is built with React and TypeScript, and the backend runs on Java with Spring Boot, which handles real-time editing via WebSockets. For syncing changes, I’m using Redis along with a custom Operational Transformation system (no third-party libraries!!!). The idea came after I found out a local summer school was teaching coding using Google Docs (yes,…

    2025 · github.com

  12. 12AC
  13. 13RO

    Hi HN! I'm Inacio, the author of REASON. I've been tinkering with LLMs since the GPT-3 API's release May 2020. Seeing the emergence of many frameworks in the last 15 months has been exciting. While many understandably focused on launching quick, I found myself intrigued by a different question: what would a thoughtful, first-principles approach look like? This curiosity led to a personal project, RΞASON, a minimalistic open-source TypeScript framework. It's been a couple of months of digging deep and learning a ton, and I'm eager to share it and grow it with insights from all of you. In the…

    2023 · tryreason.dev

  14. 14AJ

    I've been building a web UI library for a side project of mine. I thought it might be useful to others, so I'm releasing it as open source. To put it simply, I realized that most of my pain points with React come from its declarative model ui=f(state). So I'm trying something that I'm calling "imperative JSX." Instead of treating JSX as the source of truth for your UI, it essentially becomes a query interface for DOM manipulation. I first had the idea for it a few months ago, and only began writing it in earnest last week, so it's extremely early and nowhere near production-ready. Still, I'd…

    2024 · npmjs.com

  15. 15AP
  16. 16RO

    Hi HN! RΞASON is an OSS Typescript framework for developing LLM apps that uses Typescript's interfaces to get structured output from an LLM. While there are other TS LLM frameworks, I think RΞASON fills a unique space in the market: it's laser-focused on only three areas and, most importantly, actively stays away from pre-made prompting & retrieval. I've been in the LLM space since GPT-3 originally came out, and I've always had problems with other frameworks, such as LangChain. I dislike that they focus a ton on out-of-the-box prompting & pre-made agents — I, as the dev, should be the one in…

    2023 · github.com

  17. 17IV

    hi! I've made a logger for JS/TS. It's easily extendable, easy to use and configure. Would like to hear a feedback from you!

    2025 · github.com

  18. 18IH

    Hello everyone, For the past several months, I have been building multiple React/TailwindCSS components for my projects. I have decided to bundle and document them so that I can share them with the community. The entire UI kit is written in Typescript on top of the class-variance-authority library. Although I am already using these components in production, the project is still in beta since it lacks a full test suite and dark mode. Please feel free to take a look and provide feedback if you have a moment to spare. Thank you!

    2023 · rewind-ui.dev

  19. 19AR

    Hey HN, I wanted to share a UI toolkit project I’ve been working on recently, born out of how difficult I found it to build a great UX on top of LLMs, and keep application state in sync. I’ve built: - A React/JS front-end library for conversational interfaces, which makes it super easy to bootstrap AI assistants and ChatGPT style UX: https://github.com/nlkitai/nlux - A set of adapters that simplify integration with AI backends such as LangServe and HuggingFace The library is highly configurable, easy to theme, supports markdown streaming (that was tough to get…

    2024 · github.com

  20. 20TS

    Next.js has APIs to read and update search params (the /?foo=bar part of the URL), but they lack type-safety for consistent keys and proper parsing/serializing of JS data types. I found myself repeatedly building the same custom hook to get a React.useState-like approach. In 2021, I published it to NPM and then forgot about it. Since then, the `nuqs` package has gained popularity and is now used by companies like Vercel, Auth.js, Gitbook, and Midday.ai, with 200K weekly downloads. It's been fun building this as a side project and automating as much as possible to ensure a…

    2024 · nuqs.47ng.com

  21. 21TE

    A free, in-browser Jupyter-style notebook for TypeScript. It supports npm installs, network requests, and more—no signup or setup required. Why I Built It I wanted a simple way to test npm packages, experiment with TypeScript, and work on ideas like prompt engineering without heavy setup or local tools. Features - npm Integration: Install and use packages instantly. - Network Requests: Test APIs right in the notebook. - TypeScript Playground: Experiment, debug, and share code. It’s ideal for developers, educators, and anyone wanting a TypeScript scratch pad. Give it a try at…

    2025 · typescriptnotebook.com

  22. 22TG
  23. 23LM

    https://yeargun.github.io/lilscript/ LilScript is a typed, compression-first language that compiles into js and sometimes into exec(will be more stable in future). The compiler mangles, reshapes the program into optimized js that happens to be 5-15% smaller (after gzip/br compression or raw) compared to the best performing JS toolchains like oxc/esbuild/terser/.. ## What has been proven to work with LilScript? - makes VSCode's core js modules 20% smaller on average - makes the world's most performant & small markdown rendering npm library, marked, 5-7%…

    17d ago

  24. 24TI

    Spent a week in the break building a pre-compiler that brings type safety to runtime. Still pretty early, but generally does what it says. Looking for feedback, code that breaks it (check out the playground), ideas etc.

    Jan 2026 · typical.elliots.dev

Ranked by how close each launch is in meaning, then by votes. Refine with a description →