https://github.com/supunlakmal/electron-js-test
https://github.com/supunlakmal/electron-js-test
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/supunlakmal/electron-js-test
- Owner: supunlakmal
- License: mit
- Created: 2022-07-26T08:28:17.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-26T09:46:42.000Z (almost 3 years ago)
- Last Synced: 2025-01-17T14:55:24.441Z (4 months ago)
- Language: TypeScript
- Size: 1.09 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Usage
### Create an App
```
# with npx
$ npx create-nextron-app my-app --example with-typescript-material-ui# with yarn
$ yarn create nextron-app my-app --example with-typescript-material-ui# with pnpx
$ pnpx create-nextron-app my-app --example with-typescript-material-ui
```### 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`)
```