A powerful development UI for the stx templating engine.
- Dashboard with project overview and quick actions
- Template explorer to browse and analyze templates
- Performance monitoring and optimization suggestions
- Configuration management for stx
- Component explorer
The stx DevTools are included as part of the stx package. If you're using stx in your project, you already have access to the DevTools.
# If you haven't installed stx yet
npm install stx
# or with bun
bun add stxYou can run the DevTools UI with the following command from your project root:
# Using npm
npm run stx:devtools
# Using bun
bun run stx:devtoolsOr run it directly from within the package:
cd packages/devtools
bun run devThis will start a local server at http://localhost:3500 where you can access the DevTools UI.
If you want to modify or extend the DevTools:
- Clone the repository
- Install dependencies with
bun install - Start the development server with
bun run dev - Access the UI at http://localhost:3500
The stx DevTools are built using:
- stx Templating Engine (dogfooding our own technology)
- UnoCSS for styling
- Bun for building and serving
Same as stx