Prerequisites
Node.js and npm
Sable requires the following versions:- Node.js: 24.x
- npm: 11.x
.node-version as v24.13.1.
Version Manager Recommendation
Setup
Execute the following commands to start a development server:What these commands do
npm ci: Installs all dependencies from the lockfile. This is the recommended way to install dependencies in CI/CD environments and for consistent local development.npm start: This is an alias fornpm run dev, which starts the Vite development server.
Development Server
The development server runs on port 8080 by default. Once started, you can access Sable at:vite.config.ts with the following settings:
Hot Module Replacement
The Vite development server includes Hot Module Replacement (HMR), which means your changes will be reflected in the browser automatically without a full page reload.Next Steps
Once you have the development server running:- Make your changes to the codebase
- Test your changes in the browser
- Run quality checks before submitting a pull request (see Building)
- Follow the Contributing guidelines when ready to submit