hulo-lang
Version:
Hulo programming language compiler and runtime
42 lines (30 loc) • 1.18 kB
Markdown
hulo-npm
========
[](https://github.com/hulo-lang/hulo) [](https://www.npmjs.com/)
## 🚀 Quick Start
Install Hulo globally to get started:
```bash
npm install -g hulo-lang
```
This package automatically detects your platform and installs the appropriate binary distribution.
## 📦 Platform-Specific Packages
If you prefer to install platform-specific packages directly:
### macOS
```bash
npm install -g @hulo/darwin-arm64 # Apple Silicon (M1/M2)
npm install -g @hulo/darwin-x86-64 # Intel Mac
```
### Linux
```bash
npm install -g @hulo/linux-arm64 # ARM64
npm install -g @hulo/linux-i386 # 32-bit x86
npm install -g @hulo/linux-x86-64 # 64-bit x86
```
### Windows
```bash
npm install -g @hulo/windows-arm64 # ARM64
npm install -g @hulo/windows-i386 # 32-bit x86
npm install -g @hulo/windows-x86-64 # 64-bit x86
```
--------
This project is licensed under the MIT License. See [LICENSE](LICENSE) for more details.