Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jay-es/how-fast-is-vite

Vite vs Vue CLI
https://github.com/jay-es/how-fast-is-vite

Last synced: about 2 months ago
JSON representation

Vite vs Vue CLI

Awesome Lists containing this project

README

        

## Vite
https://github.com/vitejs/vite
```shell
npm init vite-app project-vite
cd project-vite
npm install
npm run dev -- --open
```

## Vue CLI
https://cli.vuejs.org/
```shell
npm install -g @vue/cli
vue create project-vue-cli
cd project-vue-cli
npm run serve -- --open
```