turborepo
typescript-go
turborepo | typescript-go | |
---|---|---|
84 | 23 | |
14,873 | 21,141 | |
- | 4.3% | |
9.8 | 9.9 | |
over 2 years ago | 4 days ago | |
Rust | Go | |
Mozilla Public License 2.0 | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
turborepo
-
My Fav Open Source GitHub Tools 2025 as a Developer
GitHub: vercel/turborepo
- A 10x Faster TypeScript
-
[Part 1] Build a CLI tool: Setup the tsonfig.json
When you setup a monorepo using turbo, the basic template gives you 3 packages by default. This can be found in turborepo/examples/basic.
-
Building a Better Monorepo with TypeScript, Turborepo, or Nx
Next, let’s create monorepo with Turborepo.
-
Rewriting Rust
> Look at the dependency tree for a next
Looks ok to me: https://npmgraph.js.org/?q=next
Ironically, most of the dependencies are actually Rust crates used by swc and turbopack [1]. Try running cargo tree on either of those crates, it's enlightening to say the least. And of course, Node has a built in file watcher, and even the most popular third party package for file watching (Chokidar) has a single dependency [3].
[1] https://github.com/vercel/turborepo/blob/main/Cargo.toml
[2] https://github.com/swc-project/swc/blob/main/Cargo.toml
[3] https://npmgraph.js.org/?q=chokidar
-
Learn how to build a monorepo in Next.js
Turborepo: Smart build system for JavaScript/TypeScript monorepos
-
Building a full-stack TypeScript application with Turborepo
We’ve only scratched the surface of what we can do with Turborepo. You can find more examples in the Turborepo examples directory on GitHub. Skill Recordings on GitHub is also another great resource that has been around since Turborepo was first released.
-
10 Trending Github repositories / October, 27 2022
git clone https://github.com/vercel/turborepo.git
-
Component composition
I use https://turborepo.org/ to facilitate my monorepo. Essentially it's a way of structuring your configs, UI; apps etc and you consume each like an internal package. I find benefits for this as the kinds of sites I make will generally have an internal app, an admin panel and a marketing site. I can write UI, config etc in one place and consume them over the three projects to keep everything consistent.
-
How I Monorepo
The latest addition to the Composer Suite monorepo, Turborepo optimizes monorepo workflows by caching build artifacts. This may sound a little abstract and boring, but what this actually means is that when you build something within your monorepo, Turborepo will make sure only the things that it depends on are rebuilt; everything else will be retrieved from a cache that either lives on your local computer, or a remote cache server. Adding Turborepo to the Composer Suite monorepo pretty much halved CI build times, but it was also a way to teach Vercel, which I use for hosting the various example apps in the repo, to only actually deploy the ones that have changed since their last deployment. And that's really cool!
typescript-go
- Figma Files Registration Statement for Proposed Initial Public Offering
-
Swift at Apple: Migrating the Password Monitoring Service from Java
You didn't read the article. It wasn't a rewrite, it was a port.
https://github.com/microsoft/typescript-go/discussions/410
-
Show HN: I rewrote my Mac Electron app in Rust (app went from 1GB to 172MB)
Here's the FAQs, where they explain the decision to go with Go and not, say, rust.
https://github.com/microsoft/typescript-go/discussions/categ...
- Type-Constrained Code Generation with Language Models
-
TypeScript 7: 10x Speedup and the Go Language 🚨
First of all, the original TypeScript compiler under the hood is moving in the new version 7 from JavaScript to Go. That is, there will be conditionally TypeScript 6 (JS) and TypeScript 7 (Go). This was done mainly because of the scaling problem when used in very large projects, but also, of course, because of the speed.
- TypeScript-Go: Why a port instead of a rewrite? What's the difference?
- Microsoft Rewrite Tsc in Go
-
Why Go?
Since you wrote this it looks like [Anders replied](https://github.com/microsoft/typescript-go/discussions/411#d...) to one of the threads.
I have to agree with the sentiment that is a success story that the team is allowed to use the best tool for the job, even if it suffers from "not built here".
This is really healthy and encouraging to see in these large OSS corporate-sponsored projects, so kudos to you and the team for making the pragmatic choice.
- TypeScript Go (will be merged into TypeScript)
-
A 10x Faster TypeScript
I think they answered in their FAQ here: https://github.com/microsoft/typescript-go/discussions/455#d....
If I got it correctly, they created a node native module that allows synchronous communication on standard I/O between external processes.
So, this node module will make possible the communication between the typescript compiler GO process, that will expose an “API server compiler”, and a client side JavaScript process.
They don’t think it will be possible to port all APIs and some/most of them will be different than today.
What are some alternatives?
nx - An AI-first build platform that connects everything from your editor to CI. Helping you deliver fast, without breaking things.
porffor - An ahead-of-time JavaScript compiler
lerna - Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.
Godot - Godot Engine – Multi-platform 2D and 3D game engine
vite - Next generation frontend tooling. It's fast!
type-constrained-code-generation - Reproduction Package for the paper "Type-Constrained Code Generation with Language Models" [PLDI 2025]