https://github.com/embeddedenterprises/ngx-golden-layout-electron
Electron Demonstration based on angular 8, electron 5 and ngx-golden-layout
https://github.com/embeddedenterprises/ngx-golden-layout-electron
Last synced: about 1 year ago
JSON representation
Electron Demonstration based on angular 8, electron 5 and ngx-golden-layout
- Host: GitHub
- URL: https://github.com/embeddedenterprises/ngx-golden-layout-electron
- Owner: EmbeddedEnterprises
- License: mit
- Created: 2019-06-14T06:39:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T06:46:49.000Z (over 3 years ago)
- Last Synced: 2025-04-06T08:06:38.939Z (about 1 year ago)
- Language: TypeScript
- Size: 2.03 MB
- Stars: 9
- Watchers: 0
- Forks: 1
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ngx-golden-layout-electron
This repository contains a minimal working example to get you started using Golden-Layout in electron.
It uses:
- ngx-golden-layout
- Angular 8
- Electron 5
---
- It also uses the new ivy compiler yielding better performance and less app bundle size!
## Getting Started
Clone this repository
``` bash
# First step: Clone and build ngx-golden-layout on the ng8 branch
git clone -b ng8-electron https://github.com/embeddedenterprises/ng6-golden-layout
cd ng6-golden-layout
npm ci
npx ng build ngx-golden-layout
# Second step: Clone and build this repository
cd ..
git clone https://github.com/embeddedenterprises/ngx-golden-layout-electron.git
cd ngx-golden-layout-electron
npm ci
# Third step: Start electron in dev mode
npm start
```