GDG-React-Workshop

React + Electron + Typescript workshop for GDG DevFest Warsaw πŸ‘©β€πŸ’»πŸ‘¨β€πŸ’»πŸ€–πŸ’»

Getting started

In order to work with this repository, you must install:

$ git clone https://github.com/SzybkiSasza/GDG-React-Workshop.git
$ cd GDG-React-Workshop
$ yarn

Toolset

We’ll use following tools to build our core app:

These tools will be used to build advanced features:

Goals

  1. Learn the toolset
  2. Understand principles behind basic React App
  3. Understand Create React App behaviour and tradeoffs
  4. Successfully use Typescript with React
  5. Wrap our app in Electron and display as native desktop app (optional - based on available time)
  6. DO NOT eject Create React App in order to have it working with Electron

How does it work?

The configuration is rather complex. It can be split into a few separate parts:

Running React app as a standalone browser app

In order to just run a React part of the workshop, you can use yarn start-react script that will use React Scripts (that are part of Create React App) to run the app - it’s so simple!

Running React App from Electron with reload capabilities

If you want to see CRA with Electron in action, just run yarn start script. There are a few key events that happen when you run that script (it’s handled by the Foreman that reads from Procfile - check out this file!):

All of these in conjunction allow one to develop desktop app using React almost simultaneously. It allows full hot reloading with one caveat: whenever you change Electron part of the app, the window has to be re-generated (it will re-open once TypeScript compiler prepares new main.js file).

As Electron is essentially just a NodeJS wrapper that renders any arbitrary HTML content in headless browser windows, the ony thing you have to do to render any HTML app in Electron is to provide a correct URL - you can find the code that takes care of it in src/electron/main.ts.

For more details, check out src/electron folder, especially connect-electron.ts file that prepares initial Electron launch based on React app state.

Bundling React App with Electron without ejecting

In order to bundle the React App in Electron, you can run yarn dist script. It performs three steps:

  1. Builds standard React app
  2. Builds Electron part of the code and puts it in build/electron directory
  3. Bundles Electron with built React app as a standalone installer

If the script is ran successfully, it’ll create a set of files in dist directory, including app installer - just double-click it in order to have it installed and ran on your system.

Side note on building the app

Currently, the build pipeline supports only Windows. It should be possible to simply modify the build script in order to have it working for Mac/*Nix systems.

Resources

  1. React
  2. Jest
  3. Material UI
  4. Electron