https://github.com/supunlakmal/thismypc-yarn-nextron
https://github.com/supunlakmal/thismypc-yarn-nextron
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/supunlakmal/thismypc-yarn-nextron
- Owner: supunlakmal
- Created: 2023-04-12T06:23:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-14T09:59:23.000Z (about 2 years ago)
- Last Synced: 2025-01-17T14:55:24.413Z (4 months ago)
- Language: TypeScript
- Size: 313 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 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 pnpx
$ pnpx 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`)
```