Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/irustm/angular-nodegui
Build performant, native and cross-platform desktop applications with Angular
https://github.com/irustm/angular-nodegui
Last synced: about 1 month ago
JSON representation
Build performant, native and cross-platform desktop applications with Angular
- Host: GitHub
- URL: https://github.com/irustm/angular-nodegui
- Owner: irustm
- License: mit
- Created: 2019-10-16T20:19:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T03:41:53.000Z (almost 2 years ago)
- Last Synced: 2024-12-20T02:11:59.712Z (about 1 month ago)
- Language: TypeScript
- Size: 2.32 MB
- Stars: 117
- Watchers: 3
- Forks: 7
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nodegui - Angular NodeGui - Build performant, native and cross-platform desktop applications with Angular (Renderers)
README
# AngularNodeGUI
[![npm version](https://badge.fury.io/js/angular-nodegui.svg)](https://www.npmjs.com/package/angular-nodegui)
Build performant, native and cross-platform desktop applications with Angular.🚀
Angular NodeGUI is powered by Angular 🅰️ and Qt5 💚 which makes it CPU and memory efficient as compared to other chromium based solutions like electron. Angular NodeGUI is essentially a Angular renderer for NodeGUI.
## Docs
Main docs: https://docs.nodegui.org
Article(Russian): [Native and cross-platform desktop applications with Angular, NodeGui](https://medium.com/@irustm/%D0%B4%D0%B5%D0%BB%D0%B0%D0%B5%D0%BC-%D0%BA%D1%80%D0%BE%D1%81%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D1%84%D0%BE%D1%80%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%D0%B5-%D0%BD%D0%B0%D1%82%D0%B8%D0%B2%D0%BD%D0%BE%D0%B5-%D0%B4%D0%B5%D1%81%D0%BA%D1%82%D0%BE%D0%BF-%D0%BF%D1%80%D0%B8%D0%BB%D0%BE%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5-%D0%BD%D0%B0-angular-6bee05d24e25)
## Nodegui Features
- Cross platform. Should work on major Linux flavours, Windows and MacOS.
- 📉 Low CPU and memory footprint. Current CPU stays at 0% on idle and memory usage is under 20mb for a hello world program.
- 💅 Styling with CSS (includes actual cascading). Also has full support for Flexbox layout (thanks to Yoga).
- ✅ Complete Nodejs api support (Currently runs on Node v12.x - and is easily upgradable). Hence has access to all nodejs compatible npm modules.
- 🎪 Native widget event listener support. Supports all events available from Qt / NodeJs.
- 💸 Can be used for Commercial applications.
- 🕵️♂️ Good Devtools support.
- 📚 Good documentation and website.
- 🧙♂️ Good documentation for contributors.
- Good support for dark mode (Thanks to QT).# Getting started
## Requirements
- CMake 3.1 and up
- Make, GCC v7
- NodeJS 12.x and up.Setting up on [macOS](https://docs.nodegui.org/docs/guides/getting-started#setting-up-on-macos), [Windows](https://docs.nodegui.org/docs/guides/getting-started#setting-up-on-windows), [Linux](https://docs.nodegui.org/docs/guides/getting-started#setting-up-on-linux)
[Getting started](https://docs.nodegui.org/docs/guides/getting-started)
## Easy start
```
npm i
npm start
```## Demo
### Start app
[Link](https://github.com/irustm/angular-nodegui/tree/master/src/app)
### Router
Use `NodeguiRouterModule` instead of `RouterModule` for routing. [Example](https://github.com/irustm/angular-nodegui/blob/master/src/app/app.module.ts#L23)
```js
NodeguiRouterModule.forRoot(appRoutes);
```### Widget
[Link](https://github.com/irustm/angular-nodegui/tree/master/projects/weather-demo)
#### Mac
#### Windows