Whalebird-desktop-client-ma.../README.md

39 lines
628 B
Markdown
Raw Normal View History

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