An open API service indexing awesome lists of open source software.

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

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`)
```