mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2025-01-24 22:49:15 +01:00
39 lines
628 B
Markdown
39 lines
628 B
Markdown
<p align="center"><img src="https://i.imgur.com/a9QWW0v.png"></p>
|
|
|
|
## Usage
|
|
|
|
### Create an App
|
|
|
|
```
|
|
# with npx
|
|
$ npx create-nextron-app my-app --example with-tailwindcss
|
|
|
|
# with yarn
|
|
$ yarn create nextron-app my-app --example with-tailwindcss
|
|
|
|
# with pnpm
|
|
$ pnpm dlx create-nextron-app my-app --example with-tailwindcss
|
|
```
|
|
|
|
### Install Dependencies
|
|
|
|
```
|
|
$ cd my-app
|
|
|
|
# using yarn or npm
|
|
$ yarn (or `npm install`)
|
|
|
|
# using pnpm
|
|
$ pnpm install --shamefully-hoist
|
|
```
|
|
|
|
### Use it
|
|
|
|
```
|
|
# development mode
|
|
$ yarn dev (or `npm run dev` or `pnpm run dev`)
|
|
|
|
# production build
|
|
$ yarn build (or `npm run build` or `pnpm run build`)
|
|
```
|