# Wasmrun

[](https://crates.io/crates/wasmrun) [](https://crates.io/crates/wasmrun) [](https://crates.io/crates/wasmrun) [](https://github.com/anistark/wasmrun) [](https://github.com/anistark/wasmrun/graphs/contributors)  [](https://opensource.org/licenses/MIT)
**Wasmrun** is a powerful WebAssembly runtime that simplifies development, compilation, and deployment of WebAssembly applications.

## ✨ Features
- 🚀 **Multi-Language Support** - Rust, Go, Python, C/C++, and AssemblyScript
- 🔌 **Plugin Architecture** - Extensible system with built-in and external plugins
- 🔥 **Live Reload** - Instant development feedback with file watching
- 🌐 **Zero-Config Web Server** - Built-in HTTP server for WASM and web apps
- 📦 **Smart Project Detection** - Automatically detects and configures project types
- 🏃 **Native WASM Execution** - Run WASM files directly with argument passing
## 📚 Documentation
**📖 [Full Documentation](https://wasmrun.readthedocs.io)**
## 🚀 Quick Start
### Installation
```sh
cargo install wasmrun
```
For other installation methods (DEB, RPM, from source), see the [Installation Guide](https://wasmrun.readthedocs.io/en/latest/docs/installation).
### Basic Usage
```sh
# Run a WASM file with dev server
wasmrun myfile.wasm
# Run a project directory
wasmrun ./my-wasm-project
# Compile a project
wasmrun compile ./my-project
# Execute WASM natively
wasmrun exec myfile.wasm
# Install language plugins
wasmrun plugin install wasmrust
wasmrun plugin install wasmgo
```
See the [Quick Start Guide](https://wasmrun.readthedocs.io/en/latest/docs/quick-start) for a complete tutorial.
## 🔌 Plugin System
Wasmrun uses a plugin architecture for language support:
**Built-in:**
- C/C++ (Emscripten)
**External Plugins:**
- Rust: `wasmrun plugin install wasmrust`
- Go: `wasmrun plugin install wasmgo`
- Python: `wasmrun plugin install waspy`
- AssemblyScript: `wasmrun plugin install wasmasc`
Learn more in the [Plugin Documentation](https://wasmrun.readthedocs.io/en/latest/docs/plugins/).
## 🤝 Contributing
We welcome contributions! See our [Contributing Guide](https://wasmrun.readthedocs.io/en/latest/docs/development/contributing).
## 🎤 Community
- [Community Page](https://wasmrun.readthedocs.io/en/latest/community/) - Talks, demos, and contributors
- [GitHub Issues](https://github.com/anistark/wasmrun/issues)
- [GitHub Discussions](https://github.com/anistark/wasmrun/discussions)
## 📄 License
[MIT License](./LICENSE)
## 🙏 Credits
Wasmrun is built with love using:
- [tiny_http](https://github.com/tiny-http/tiny-http) - Lightweight HTTP server
- [clap](https://github.com/clap-rs/clap) - Command line argument parsing
- [notify](https://github.com/notify-rs/notify) - File system watching for live reload
- [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) - Web integration
- Font used for logo is *Pixeled* by [OmegaPC777](https://www.youtube.com/channel/UCc5ROnYDjc4hynqsLFw4Fzg)
- And the amazing Rust and WebAssembly communities ❤️
**Made with ❤️ for the WebAssembly community**
*⭐ If you find Wasmrun useful, please consider starring the repository!*