Latest news about Bitcoin and all cryptocurrencies. Your daily crypto news habit.
Earlier this year, Stream launched Winds 2.0, an open-source and native application for macOS, Windows, and Linux, which provides an entirely new way to consume RSS feeds and Podcasts. It was our first time building a native application, so we chose to go with Electron, a framework for creating cross-platform applications.
In addition to Electron, we leveraged React, as it has an astoundingly large community, is open-source, and is easy to develop with. If youâd like to contribute or see additional information on Winds, have a look at our GitHub repo for the project.
If you havenât used Winds, you can sign up at https://getstream.io/winds. Or, if you just want a visual, below is a screenshot of Winds 2.0 running inside of Electron:
We all know how fast developer tools move these days. Unfortunately, a side effect of this rapid innovation is outdated content on the webâââsometimes by several months or yearsâââeven for a popular tool with a strong following like Electron. We knew pretty much immediately that weâd be on our own for this project. Luckily, we took some notes and weâre sharing them here to bring you up to speed with our findings.
To ensure you donât get lost, hereâs a quick rundown on the components that weâll be talking about in this post:
- Using Xcode to generate .p12 files for signing your distributions
- How a provisioning profile can be created on https://developer.apple.com (this verifies that your application is published by you and YOUÂ only)
- What entitlement files are and how entitlements.mas.plist say which permissions your app needs (e.g. network, file, settings, etc.)
- Code signing/distribution with electron-builder
- How electron-builder works and calls Xcodeâs codesign utility behind the scenes
- ASAR files and what they are
- Application Loader and how itâs used to send your distribution to Apple
- The actual store listing is defined in iTunes Connect
- Keys for macOS are generated on Appleâs website
With the latest version of Node.js installed (currently @ v10.6.0), letâs dive right in and get started.
1. Up and Running with React
For React, weâre going to use Create React App (CRA), a React scaffolding tool build and maintained by Facebook. The beauty of CRA is that it requires zero configuration on your behalf (unless you eject from CRA, which is outlined hereâââplease read as itâs important to know why and when you should and should not eject from CRA).
Install Create React App Globally
Create Example Application with Create React App CLI
Note: npx comes with npm 5.2+ and higherView Your Example App in the Browser
Then open http://localhost:3000/ and youâll see our basic boilerplate React app.
Easy, right? Youâve now bootstrapped your React application with only a few commands and are ready to move to the next step!
2. Prepping for Electron
Next, letâs go ahead and start prepping our React application for use with Electron. What we found to be the best setup for this is to do the following (make sure that you are in the example directory):
Install Electron
Move into the public directory and create a new file called electron.js:
Populate the contents of your electron.js file with the following:
3. Modifying our package.json File
Once youâve created the electron.js file, weâll need to go ahead and modify our package.json file in order to point to and execute the correct files and commands. Your entire file should look like the following:
Note: Run yarn install in order to install the packages in the package.json file.
Now you can simply run yarn start andâŠ
Your application is now running inside of an Electron wrapper!
4. Preparing for Distribution
Weâre not going to dive into how to build an application in this section; however, we will touch base on how you begin to package your app for distribution to various stores such as the macOS and Snapcraft (Linux)Â stores.
Adding Logos
Youâll also want to create an assets directory in the public directory. Once created, youâll need to drop the following files into the directory (weâll be referencing them in a bit).
- icon.ico
- icon.png (256x256px)
- icon.icns
Hereâs a quick command to create the directory so:
Note: If you donât have images, you can use the icons from Winds icons here.
Generating Keys
To get up and running for macOS, you will need ~6 certificates provisioned by Apple in the Developer Consoleâââfollow these instructions:
- Head over to https://developer.apple.com and login
- Go to the âCertificates, Identifiers & Profilesâ section
- Select the drop-down and choose macOS
- Click the â+â button and generate the certificate types below
Once complete, download the certificates. When you open them, they will automatically be stored in your keychain.
Adding Entitlements Files
Now that weâve added our images to the assets directory, letâs go ahead and add our entitlements files. These are important when signing your application for release.
Inside of the assets directory, run the following command:
Then, populate the files with the following content:
entitlements.mas.plist:
This entitlement file specifies that you need access to the network in addition to file access (for drag and drop).
> Note: You will need to populate the âXXXXXXXXXXâ value with your Apple provided ID, and the rest of the string with your domain in a package naming convention
(e.g. XXXXXXXXXX.com.example). You will need to obtain this from Apple at https://developers.apple.com (it costs around $99/yr. to be an Apple developer).
entitlements.mas.inherit.plist:
Last, weâll need to create our embedded.provisionprofile for macOS and save it in the assets directory. Apple uses this file to verify that the application is legitimate. Follow the steps below to generate a provisioning profile for your application:
- Head over to https://developer.apple.com and login
- Go to the âCertificates, Identifiers & Profilesâ section
- Select the drop-down and choose macOS
- Click the + button in the top right-hand corner
- Select âMac App Storeâ under the âProductionâ section
- Click continue
- Select âMac App Distributionâ
- Follow the instructions for generating a âCSRâ
Once complete, youâll have yourself an official embedded.provisionprofile to sign your application! Hereâs what the various screens look like for reference:
Now itâs time to double check the build settings within our package.json file. The file contains build configurations for Linux, Windows, and macOS. We donât use every setting, so if youâd like to see what all is available, visit https://www.electron.build/configuration/configuration.
Hereâs our build configuration for Winds:
5. Debugging & Resources
Electron is a rather new technology, and although it powers hundreds if not thousands of applicationsâââmost well known among the development community are Atom and Slackâââit still has bugs. There is an active ecosystem around the project creating useful tools such as electron-builder, but these tools also have their own set of bugs. Weâve run into countless error messages, blank screens, rejected app store submissions, etc., but it never made us stop exploring what Electron has to offer.
During the process, we found a good number of great debugging tools and other reading material that we felt compelled to write down to share in this post. If youâre running into an issue, youâll likely find the answer in one of the following resources:
- Electron Builder
- Releasing an App on the Mac App Store
- Mac App Store Submission Guide
- A Beginners Guide to iOS Provisioning Profiles
- iOS Code Signing & Provisioning in a Nutshell
- Verifying that a Package is Signed
- How to open and repackage OSX .pkg files
- Package MASÂ Error
- List of Categories
- RB App Checker Light
6. The ASAR File & What it does
One question we had when using electron-builder is what the ASAR file did and why it was packaged in our deployment. After much digging, we found that an ASAR file, or archive rather, is a simple tar-like format that concatenates files into a single file that allows Electron to read arbitrary files from it without unpacking the whole file.
At the end of the day, itâs really just a read-only map of what files are within the Electron build, allowing Electron itself to know whatâs inside. This can sometimes trigger various anti-virus scanners. With that said, you can pass theâââunpack option and some files will not be packed. Doing so will create two files: app.asar and app.asar.unpacked.
If youâre interested in a technical deep dive on ASAR files, head on over to the electron-builder page on application packaging here.
7. Deploying to Users
Note: This section requires that you have Amazon S3 up and running with awscliâââyou can install the CLI with âpip install awscli && aws configureââ associated with your account. The name of our bucket will be example-releases and files will be placed inside of a directory called releases within that bucket.
Once this is done and ready to go, you can now deploy to users! Simply run yarn build and electron-builder will run all of the necessary commands in order to package up the correct bundles for each operating system. Once complete, run yarn dist and it will begin uploading (using the credentials from aws configure) the packages to Amazon S3 where you can then link users to for downloads.
Hereâs a sneak peek at what our AWS S3 bucket looks like:
The easiest way to upload your application to the macOS Store is via the Application Loader which is built right into Xcode. Simply go to Xcode > Open Developer Tool > Application Loader
Once open, you will be asked to login:
Note: You must have an Apple ID associated with a valid Apple Developer Account. Additionally, you must temporarily disable 2FA as it doesnât play nicely with the Application Loader.
Once logged in, you will be prompted with a selector where you can choose the proper file to upload.
Note: When choosing a file, ensure that you navigate to the mas directory. The application within mas is the only package that will work properly for that macOSÂ store.
When uploading to the macOS store, itâs likely that youâll have to go through several iterations with Apple to dial in the details. Apple is very picky, for a good reasonâââthey donât want applications chock full of errors in the app store. Itâs just a part of the learning process, so donât let it get you down.
Bonus: If you want to deploy to the Snapcraft store, check out the docs on their website at https://docs.snapcraft.io/build-snaps/. Itâs a rather straightforward process, and you already have the Snap file (inside of your /dist directory) ready to upload!
Wrapping Up
Hopefully, youâve learned a thing or two. If you have questions or comments, please drop them in the comments below. If youâd like to get in touch with me directly, Iâm always available on Twitterâââ@NickParsons. For more posts about Winds, have a look at my Medium @nparsons08 or the official Stream Blog.
Best of luck in your future React and Electron endeavors!
Takeaways on Building a React Based App with Electron was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.
Disclaimer
The views and opinions expressed in this article are solely those of the authors and do not reflect the views of Bitcoin Insider. Every investment and trading move involves risk - this is especially true for cryptocurrencies given their volatility. We strongly advise our readers to conduct their own research when making a decision.