Everything you need to build, test, and optimize Moby-based applications.
Moby provides a powerful CLI tool for scaffolding projects and managing your workflow.
npm install -g @moby/cli
or
yarn add -g @moby/cli
Generate a new project with a variety of templates.
moby create my-app
Choose from React, Vue, or plain HTML templates.
Generate new projects, manage dependencies, and run development servers through a powerful command-line interface.
DocumentationAdvanced debugging tools with visual state tracking and interactive UI inspectors.
Open DebuggerReal-time code quality checking with automatic code formatting and syntax validation.
Configuration GuideUltra-fast bundling and minification powered by esbuild for rapid build processes.
npm install -D @moby/plugin-esbuild
First-class TypeScript integration with type checking and smart suggestions.
npm install -D @moby/plugin-typescript
Pre-render pages on the server for optimal SEO and performance.
npm install -D @moby/plugin-ssr
Next-gen development server with instant code updates and module hot replacement.
npm install -D @moby/plugin-dev
export default {
plugins: [
// Enable TypeScript compiler
new TypeScriptPlugin(),
// Configure bundler
new EsbuildPlugin({
minify: true
}),
// Server-side rendering
new SSRPlugin({
port: 8080
})
],
devServer: {
hot: true
}
}