1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-10 08:40:39 +01:00

39 lines
628 B
Markdown
Raw Normal View History

2023-11-02 01:20:27 +09:00
<p align="center"><img src="https://i.imgur.com/a9QWW0v.png"></p>
2018-03-07 22:28:48 +09:00
2023-11-02 01:20:27 +09:00
## Usage
2023-11-02 01:20:27 +09:00
### Create an App
2018-08-15 15:38:17 +09:00
```
2023-11-02 01:20:27 +09:00
# with npx
$ npx create-nextron-app my-app --example with-tailwindcss
2018-03-23 01:06:49 +09:00
2023-11-02 01:20:27 +09:00
# with yarn
$ yarn create nextron-app my-app --example with-tailwindcss
2023-11-02 01:20:27 +09:00
# with pnpm
$ pnpm dlx create-nextron-app my-app --example with-tailwindcss
```
2018-05-15 09:08:37 +09:00
2023-11-02 01:20:27 +09:00
### Install Dependencies
2023-04-14 16:52:00 -07:00
```
2023-11-02 01:20:27 +09:00
$ cd my-app
2023-04-14 16:52:00 -07:00
2023-11-02 01:20:27 +09:00
# using yarn or npm
$ yarn (or `npm install`)
2023-11-02 01:20:27 +09:00
# using pnpm
$ pnpm install --shamefully-hoist
```
2023-11-02 01:20:27 +09:00
### Use it
2023-03-09 00:18:11 +09:00
```
2023-11-02 01:20:27 +09:00
# development mode
$ yarn dev (or `npm run dev` or `pnpm run dev`)
2018-03-23 01:06:49 +09:00
2023-11-02 01:20:27 +09:00
# production build
$ yarn build (or `npm run build` or `pnpm run build`)
2018-03-23 01:06:49 +09:00
```