November 2019
Beginner
436 pages
8h 52m
English
To configure the Electron Shell's integration, we need to make a few changes to the project files. Let's get started:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>ChatApp</title> <base href="./" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="icon" type="image/x-icon" href="favicon.ico" /> </head> <body> <app-root></app-root> </body> </html>
npm i electron -D
{ "name": "chat-app", "version": "0.0.0", "main": "main.js", "scripts": { "ng": "ng", "serve": "ng serve", "start": "electron ...Read now
Unlock full access