- Lightning-fast cold server start
- Instant hot module replacement (HMR) and dev SSR
- True on-demand compilation
Vue 3
: UI Rendering libraryVite
Next-generation front-end toolingTypeScript
: Type-safetySSR
: Server-side renderingPinia
: State managementVue Router
: Routing libraryExpress
: Node web serverDocker
: Containerization
First, install all dependencies:
yarn install
Then, create a .env
file:
NODE_ENV=development
PORT=3000
VITE_PORT=3000
VITE_BASE=http://localhost:3000
To start development:
yarn dev
To build for production:
yarn build
To containerize using Docker:
docker compose up