https://github.com/rijalghodi/electron-contact-app
Desktop Contact App Developed Using Simple NextJS, Electron, and Prisma
https://github.com/rijalghodi/electron-contact-app
desktop-app electron nextjs prisma
Last synced: about 2 months ago
JSON representation
Desktop Contact App Developed Using Simple NextJS, Electron, and Prisma
- Host: GitHub
- URL: https://github.com/rijalghodi/electron-contact-app
- Owner: rijalghodi
- Created: 2023-09-26T07:35:30.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-27T06:46:20.000Z (over 2 years ago)
- Last Synced: 2025-03-15T12:44:34.639Z (over 1 year ago)
- Topics: desktop-app, electron, nextjs, prisma
- Language: TypeScript
- Homepage:
- Size: 294 KB
- Stars: 1
- 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 pnpm
$ pnpm dlx 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`)
```