Skip to content

Quick Start

Get started with Image Editor in just a few minutes.

Starting the Development Server

After installation, start the development server:

npm run dev

The application will be available at http://localhost:5173 with hot module replacement enabled.

Available Commands

Here are the most commonly used commands:

Command Description
npm run dev Start development server with HMR
npm run build Create production build
npm run preview Preview production build locally
npm run test Run tests in watch mode
npm run lint Check for linting errors

Building for Production

Create an optimized production build:

npm run build

The output will be in the dist/ directory, ready for deployment.

Preview Production Build

Test the production build locally:

npm run preview

Running Tests

Run the test suite:

# Watch mode (interactive)
npm run test

# Single run with coverage
npm run test:coverage

# With UI
npm run test:ui

Next Steps