Moby Developer Tools

Everything you need to build, test, and optimize Moby-based applications.

Getting Started

Install CLI

Moby provides a powerful CLI tool for scaffolding projects and managing your workflow.

npm install -g @moby/cli or yarn add -g @moby/cli

Create Project

Generate a new project with a variety of templates.

moby create my-app

Choose from React, Vue, or plain HTML templates.

Key Tools

Moby CLI

Generate new projects, manage dependencies, and run development servers through a powerful command-line interface.

Documentation

Debugger

Advanced debugging tools with visual state tracking and interactive UI inspectors.

Open Debugger

Code Linter

Real-time code quality checking with automatic code formatting and syntax validation.

Configuration Guide

Available Plugins

ESB

ESBuild Integration

Ultra-fast bundling and minification powered by esbuild for rapid build processes.

npm install -D @moby/plugin-esbuild
v3.2.1
TST

TypeScript Support

First-class TypeScript integration with type checking and smart suggestions.

npm install -D @moby/plugin-typescript
v5.4.0
SSR

Server Side Rendering

Pre-render pages on the server for optimal SEO and performance.

npm install -D @moby/plugin-ssr
v1.0.4
DEV

Hot Reload

Next-gen development server with instant code updates and module hot replacement.

npm install -D @moby/plugin-dev
v2.8.7

Code Example

moby.config.js
export default { plugins: [ // Enable TypeScript compiler new TypeScriptPlugin(), // Configure bundler new EsbuildPlugin({ minify: true }), // Server-side rendering new SSRPlugin({ port: 8080 }) ], devServer: { hot: true } }
```