|
| 1 | +[](https://angular.io/) [](https://electronjs.org/) |
| 2 | + |
| 3 | +![Maintained][maintained-badge] |
| 4 | +[![Travis Build Status][build-badge]][build] |
| 5 | +[![Make a pull request][prs-badge]][prs] |
| 6 | +[](LICENSE.md) |
| 7 | + |
| 8 | +[![Watch on GitHub][github-watch-badge]][github-watch] |
| 9 | +[![Star on GitHub][github-star-badge]][github-star] |
| 10 | +[![Tweet][twitter-badge]][twitter] |
| 11 | + |
| 12 | +# Introduction |
| 13 | + |
| 14 | +Bootstrap and package your project with Angular 11 and Electron 11 (Typescript + SASS + Hot Reload) for creating Desktop applications. |
| 15 | + |
| 16 | +Currently runs with: |
| 17 | + |
| 18 | +- Angular v11.0.3 |
| 19 | +- Electron v11.0.3 |
| 20 | +- Electron Builder v22.9.1 |
| 21 | + |
| 22 | +With this sample, you can : |
| 23 | + |
| 24 | +- Run your app in a local development environment with Electron & Hot reload |
| 25 | +- Run your app in a production environment |
| 26 | +- Package your app into an executable file for Linux, Windows & Mac |
| 27 | + |
| 28 | +/!\ Hot reload only pertains to the renderer process. The main electron process is not able to be hot reloaded, only restarted. |
| 29 | + |
| 30 | +/!\ Angular 11.x CLI needs Node 10.13 or later to work correctly. |
| 31 | + |
| 32 | +## Getting Started |
| 33 | + |
| 34 | +Clone this repository locally : |
| 35 | + |
| 36 | +``` bash |
| 37 | +git clone https://github.com/maximegris/angular-electron.git |
| 38 | +``` |
| 39 | + |
| 40 | +Install dependencies with npm : |
| 41 | + |
| 42 | +``` bash |
| 43 | +npm install |
| 44 | +``` |
| 45 | + |
| 46 | +There is an issue with `yarn` and `node_modules` when the application is built by the packager. Please use `npm` as dependencies manager. |
| 47 | + |
| 48 | + |
| 49 | +If you want to generate Angular components with Angular-cli , you **MUST** install `@angular/cli` in npm global context. |
| 50 | +Please follow [Angular-cli documentation](https://github.com/angular/angular-cli) if you had installed a previous version of `angular-cli`. |
| 51 | + |
| 52 | +``` bash |
| 53 | +npm install -g @angular/cli |
| 54 | +``` |
| 55 | + |
| 56 | +## To build for development |
| 57 | + |
| 58 | +- **in a terminal window** -> npm start |
| 59 | + |
| 60 | +Voila! You can use your Angular + Electron app in a local development environment with hot reload ! |
| 61 | + |
| 62 | +The application code is managed by `main.ts`. In this sample, the app runs with a simple Angular App (http://localhost:4200) and an Electron window. |
| 63 | +The Angular component contains an example of Electron and NodeJS native lib import. |
| 64 | +You can disable "Developer Tools" by commenting `win.webContents.openDevTools();` in `main.ts`. |
| 65 | + |
| 66 | +## Use Electron / NodeJS / 3rd party libraries |
| 67 | + |
| 68 | +As see in previous chapter, this sample project runs on both mode (web and electron). To make this happens, **you have to import your dependencies the right way**. Please check `providers/electron.service.ts` to watch how conditional import of libraries has to be done when using electron / NodeJS / 3rd party librairies in renderer context (ie. Angular). |
| 69 | + |
| 70 | +## Browser mode |
| 71 | + |
| 72 | +Maybe you only want to execute the application in the browser with hot reload ? Just run `npm run ng:serve:web`. |
| 73 | + |
| 74 | +## Included Commands |
| 75 | + |
| 76 | +|Command|Description| |
| 77 | +|--|--| |
| 78 | +|`npm run ng:serve`| Execute the app in the browser | |
| 79 | +|`npm run build`| Build the app. Your built files are in the /dist folder. | |
| 80 | +|`npm run build:prod`| Build the app with Angular aot. Your built files are in the /dist folder. | |
| 81 | +|`npm run electron:local`| Builds your application and start electron |
| 82 | +|`npm run electron:build`| Builds your application and creates an app consumable based on your operating system | |
| 83 | + |
| 84 | +**Your application is optimised. Only /dist folder and node dependencies are included in the executable.** |
| 85 | + |
| 86 | +## You want to use a specific lib (like rxjs) in electron main thread ? |
| 87 | + |
| 88 | +YES! You can do it! Just by importing your library in npm dependencies section (not **devDependencies**) with `npm install --save`. It will be loaded by electron during build phase and added to your final package. Then use your library by importing it in `main.ts` file. Quite simple, isn't it ? |
| 89 | + |
| 90 | +## E2E Testing |
| 91 | + |
| 92 | +E2E Test scripts can be found in `e2e` folder. |
| 93 | + |
| 94 | +|Command|Description| |
| 95 | +|--|--| |
| 96 | +|`npm run e2e`| Execute end to end tests | |
| 97 | + |
| 98 | +Note: To make it work behind a proxy, you can add this proxy exception in your terminal |
| 99 | +`export {no_proxy,NO_PROXY}="127.0.0.1,localhost"` |
| 100 | + |
| 101 | +## Branch & Packages version |
| 102 | + |
| 103 | +- Angular 4 & Electron 1 : Branch [angular4](https://github.com/maximegris/angular-electron/tree/angular4) |
| 104 | +- Angular 5 & Electron 1 : Branch [angular5](https://github.com/maximegris/angular-electron/tree/angular5) |
| 105 | +- Angular 6 & Electron 3 : Branch [angular6](https://github.com/maximegris/angular-electron/tree/angular6) |
| 106 | +- Angular 7 & Electron 3 : Branch [angular7](https://github.com/maximegris/angular-electron/tree/angular7) |
| 107 | +- Angular 8 & Electron 7 : Branch [angular8](https://github.com/maximegris/angular-electron/tree/angular8) |
| 108 | +- Angular 9 & Electron 7 : Branch [angular9](https://github.com/maximegris/angular-electron/tree/angular9) |
| 109 | +- Angular 10 & Electron 9 : Branch [angular10](https://github.com/maximegris/angular-electron/tree/angular9) |
| 110 | +- Angular 11 & Electron 10 : (master) |
| 111 | + |
| 112 | +[build-badge]: https://travis-ci.org/maximegris/angular-electron.svg?branch=master&style=style=flat-square |
| 113 | +[build]: https://travis-ci.org/maximegris/angular-electron |
| 114 | +[license-badge]: https://img.shields.io/badge/license-Apache2-blue.svg?style=style=flat-square |
| 115 | +[license]: https://github.com/maximegris/angular-electron/blob/master/LICENSE.md |
| 116 | +[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square |
| 117 | +[prs]: http://makeapullrequest.com |
| 118 | +[github-watch-badge]: https://img.shields.io/github/watchers/maximegris/angular-electron.svg?style=social |
| 119 | +[github-watch]: https://github.com/maximegris/angular-electron/watchers |
| 120 | +[github-star-badge]: https://img.shields.io/github/stars/maximegris/angular-electron.svg?style=social |
| 121 | +[github-star]: https://github.com/maximegris/angular-electron/stargazers |
| 122 | +[twitter]: https://twitter.com/intent/tweet?text=Check%20out%20angular-electron!%20https://github.com/maximegris/angular-electron%20%F0%9F%91%8D |
| 123 | +[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/maximegris/angular-electron.svg?style=social |
| 124 | +[maintained-badge]: https://img.shields.io/badge/maintained-yes-brightgreen |
0 commit comments