Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jay-es/how-fast-is-vite
- Owner: jay-es
- Created: 2020-07-05T06:39:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-25T06:05:18.000Z (about 4 years ago)
- Last Synced: 2024-04-23T20:23:24.586Z (8 months ago)
- Language: Vue
- Homepage: https://qiita.com/jay-es/items/b3bc9c1dc077bc3f7f35
- Size: 868 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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
```