November 2019
Beginner
436 pages
8h 52m
English
You may have already noticed the Electron label in the main application menu. This has happened because we launched a generic Electron shell to run and test our application with the npm start command. As you may recall, we defined the start command like so:
{ "name": "markdown-editor", "version": "1.1.0", "main": "index.js", "scripts": { "start": "electron ." }, "devDependencies": { "electron": "^7.0.0", "electron-builder": "^21.2.0" }, "dependencies": { "simplemde": "^1.11.2" }}
But when you package the application for distribution, it is going to have its own version of Electron embedded in it. In that case, the name of your application renders as expected.
Let's test the package with the macOS ...
Read now
Unlock full access