Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chao921125/vue-bun
bunjs+vue+vite,建议大家都学习,非常棒
https://github.com/chao921125/vue-bun
bunjs vue vue3
Last synced: about 1 month ago
JSON representation
bunjs+vue+vite,建议大家都学习,非常棒
- Host: GitHub
- URL: https://github.com/chao921125/vue-bun
- Owner: chao921125
- License: bsd-3-clause
- Created: 2024-04-03T08:40:28.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-15T10:08:23.000Z (6 months ago)
- Last Synced: 2024-10-01T03:41:47.439Z (about 1 month ago)
- Topics: bunjs, vue, vue3
- Language: HTML
- Homepage:
- Size: 65.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# API
```shell
# Mac Linux Windows 安装 bun
curl -fsSL https://bun.sh/install | bashpowershell -c "irm bun.sh/install.ps1 | iex"
# bun 升级 或者继续执行安装
bun upgrade
# 创建项目
bun create vite bun-vue
bun init
# 依赖包操作
bun add vue
bun add -D @types/vue
bun remove ts-node
bun install
bun run dev --watch
# 基于 package.json 更新到最新的依赖版本,不更新 package.json
bun update
# 将 package.json 内部依赖版本更新到最新,更新 package.json
bunx taze -w
```