Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/brunomart97/electron-react-boilerplate

Template for Electron projects with React
https://github.com/brunomart97/electron-react-boilerplate

Last synced: about 4 hours ago
JSON representation

Template for Electron projects with React

Awesome Lists containing this project

README

        

# Getting Started

### Dependencies

Install the dependencies

```shell
npm install
```

### Development environment

Running the project

In a terminal, run react:

```shell
npm run react
```

In another terminal, run electron:

```shell
npm run electron
```

### Build the project

First, run the react build:

```shell
npm run build-react
```

Then, run the electron build for the chosen operational system:

Windows:

```shell
npm run build-electron-win
```

Mac:

```shell
npm run build-electron-mac
```

Linux:

```shell
npm run build-electron-linux
```