Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/btanakan/hello-nextron
Next.js + Electron + tailwind + typescript.
https://github.com/btanakan/hello-nextron
electron nextjs tailwindcss typescript
Last synced: 6 days ago
JSON representation
Next.js + Electron + tailwind + typescript.
- Host: GitHub
- URL: https://github.com/btanakan/hello-nextron
- Owner: BTanakan
- Created: 2023-04-12T06:05:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-04-12T06:07:13.000Z (over 1 year ago)
- Last Synced: 2024-07-08T13:49:28.253Z (4 months ago)
- Topics: electron, nextjs, tailwindcss, typescript
- Language: JavaScript
- Homepage:
- Size: 327 KB
- Stars: 0
- Watchers: 1
- 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 basic-javascript# with yarn
$ yarn create nextron-app my-app --example basic-javascript# with pnpx
$ pnpx create-nextron-app my-app --example basic-javascript
```### 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`)
```