https://github.com/utooland/utoo
An unified toolchain for web development
https://github.com/utooland/utoo
bundler npm rust toolchain turbopack webpack
Last synced: 7 days ago
JSON representation
An unified toolchain for web development
- Host: GitHub
- URL: https://github.com/utooland/utoo
- Owner: utooland
- License: mit
- Created: 2023-04-06T04:43:29.000Z (almost 3 years ago)
- Default Branch: next
- Last Pushed: 2026-01-21T18:03:21.000Z (11 days ago)
- Last Synced: 2026-01-21T19:25:03.321Z (11 days ago)
- Topics: bundler, npm, rust, toolchain, turbopack, webpack
- Language: Rust
- Homepage: https://utoo.land
- Size: 28.2 MB
- Stars: 2,289
- Watchers: 21
- Forks: 107
- Open Issues: 64
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
> 🌖 **Notice**: We are building a next-generation toolchain on top of [Turbopack](https://turbo.build/pack). Check out our [progress](https://github.com/utooland/utoo/issues/1872).
Utoo
Unified Toolchain: Open & Optimized
[](./LICENSE)
[](https://github.com/utooland/utoo/actions)
[](./CONTRIBUTING.md)
---
Utoo is a modern, high-performance frontend toolchain designed to provide a unified and optimized experience. It combines a fast package manager, a powerful bundler, and a flexible command system into a single, cohesive ecosystem.
## 💡 Why Utoo?
| Feature | Description |
| :--- | :--- |
| **Unified** | One tool for package management, building, and workflow automation. |
| **Performance** | Core logic in Rust + Turbopack for extreme speed. |
| **Compatible** | Seamless migration with Webpack compatibility mode. |
| **Universal** | Run anywhere: Local, CI, or Browser (via WASM). |
## 📦 Core Components
- **[`utoo`](crates/pm)** (alias **`ut`**): High-performance Rust package manager (Fast, Parallel, `npm` compatible).
- **[`@utoo/pack`](packages/pack)**: Next-gen bundler powered by **Turbopack** (HMR, TS/JSX, Less/Sass, and more).
- **[`@utoo/pack-cli`](packages/pack-cli)**: Command-line interface for the bundler (dev server, build). A lightweight wrapper to run `up` commands — `up` is a shortcut alias for `utoopack`.
- **[`@utoo/web`](packages/utoo-web)**: Web-compatible version of the toolchain (WASM, Browser-based bundling).
## 🚀 Quick Start
### 1. Install
```bash
# Install the core toolchain
npm install -g utoo
# Install the bundler in nodejs environment
ut install @utoo/pack --save-dev
# Install the bundler cli in nodejs environment(Optional)
ut install @utoo/pack-cli --save-dev
# Install the web version
ut install @utoo/web --save
```
### 2. Use
#### Package Management
```bash
ut install # Install dependencies (or use `ut install`)
ut add lodash # Add a package (or use `ut add`)
ut x create-react # Execute a package (npx style, or use `ut x`)
```
#### Bundling via @utoo/pack-cli
```bash
utx up dev # Start dev server with HMR
utx up build # Production build
utx up build --webpack # Build using webpack.config.js
```
## ✨ Key Features
- ⚡ **Rust Powered**: Maximum performance for dependency resolution and bundling.
- 🛠️ **Turbopack Inside**: Incremental builds and instant HMR.
- 🔌 **Webpack Friendly**: Partial support for existing Webpack configurations.
- 📦 **Monorepo First**: Built-in workspace management.
- 🌐 **Web Ready**: Run the entire toolchain in the browser via WASM.
## 📂 Project Structure
- **[crates/](crates/)**: Rust core (Package Manager, Bundler Core, WASM/NAPI bindings).
- **[packages/](packages/)**: TypeScript packages (CLI, Web version, Shared utilities).
- **[next.js/](next.js/)**: Turbopack source integration (Git submodule).
- **[examples/](examples/)**: Demo projects (React, Ant Design, Webpack-compat, etc.).
## 🤝 Contributing
We love contributions! Check out [CONTRIBUTING.md](CONTRIBUTING.md) to get started.
## 📄 License
Utoo is licensed under the [MIT License](LICENSE).