Bun

指南生态系统

使用 Qwik 和 Bun 构建应用

使用 bunx create-qwik 初始化一个新的 Qwik 应用。

当您使用 bunx 时,create-qwik 包会检测到并自动使用 bun 安装依赖项。

bun create qwik

      ............
    .::: :--------:.
   .::::  .:-------:.
  .:::::.   .:-------.
  ::::::.     .:------.
 ::::::.        :-----:
 ::::::.       .:-----.
  :::::::.     .-----.
   ::::::::..   ---:.
    .:::::::::. :-:.
     ..::::::::::::
             ...::::


┌  Let's create a  Qwik App  ✨ (v1.2.10)

◇  Where would you like to create your new project? (Use '.' or './' for current directory)
│  ./my-app

●  Creating new project in  /path/to/my-app  ... 🐇

◇  Select a starter
│  Basic App

◇  Would you like to install bun dependencies?
│  Yes

◇  Initialize a new git repository?
│  No

◇  Finishing the install. Wanna hear a joke?
│  Yes

○  ────────────────────────────────────────────────────────╮
│                                                          │
│  How do you know if there’s an elephant under your bed?  │
│  Your head hits the ceiling!                             │
│                                                          │
├──────────────────────────────────────────────────────────╯

◇  App Created 🐰

◇  Installed bun dependencies 📋

○  Result ─────────────────────────────────────────────╮
│                                                      │
│  Success!  Project created in my-app directory       │
│                                                      │
│  Integrations? Add Netlify, Cloudflare, Tailwind...  │
│  bun qwik add                                        │
│                                                      │
│  Relevant docs:                                      │
│  https://qwik.node.org.cn/docs/getting-started/       │
│                                                      │
│  Questions? Start the conversation at:               │
│  https://qwik.node.org.cn/chat                        │
│  https://twitter.com/QwikDev                         │
│                                                      │
│  Presentations, Podcasts and Videos:                 │
│  https://qwik.node.org.cn/media/                      │
│                                                      │
│  Next steps:                                         │
│  cd my-app                                           │
│  bun start                                           │
│                                                      │
│                                                      │
├──────────────────────────────────────────────────────╯

└  Happy coding! 🎉

运行 bun run dev 以启动开发服务器。

bun run dev
  $ vite--mode ssr

  VITE v4.4.7  ready in 1190 ms

  ➜  Local:   https://127.0.0.1:5173/
  ➜  Network: use --host to expose
  ➜  press h to show help

在浏览器中打开 https://127.0.0.1:5173 以查看结果。当您编辑源文件时,Qwik 将热重载您的应用。

Qwik screenshot

有关完整的文档,请参阅 Qwik 文档