Installation
Quick Install
curl -fsSL https://hub.wippy.ai/install.sh | bash
Or download directly from hub.wippy.ai/releases.
Verify
wippy version
Quick Start
# Create a new project
mkdir myapp && cd myapp
wippy init
# Run
wippy run
HTTP, SQL, storage, and process hosting are built into the runtime — a fresh project runs without any dependencies. Framework modules are added from the hub as needed:
wippy add wippy/test
wippy install
Commands Overview
| Command | Description |
|---|---|
wippy init |
Initialize a new project |
wippy run |
Start the runtime |
wippy test |
Run the test entrypoint |
wippy lint |
Check code for errors |
wippy add |
Add a dependency |
wippy install |
Install dependencies |
wippy update |
Update dependencies |
wippy pack |
Create a snapshot |
wippy publish |
Publish to hub |
wippy search |
Search for modules |
wippy readme |
Fetch a module README from the hub |
wippy registry |
Inspect loaded registry entries |
wippy auth |
Manage authentication |
wippy version |
Print version info |
See CLI Reference for full documentation.
Troubleshooting
If wippy version is not found after install, reopen your shell or verify that the install directory is on your PATH.
Next Steps
- Hello World - Create your first project
- Project Structure - Understand the layout
- CLI Reference - All commands and options