{"id":13800302,"url":"https://github.com/maximegris/angular-tauri","last_synced_at":"2025-10-07T09:37:53.525Z","repository":{"id":40611407,"uuid":"469373159","full_name":"maximegris/angular-tauri","owner":"maximegris","description":"Ultra-fast bootstrapping with Angular and Tauri :speedboat:","archived":false,"fork":false,"pushed_at":"2024-01-07T10:56:48.000Z","size":2658,"stargazers_count":105,"open_issues_count":2,"forks_count":22,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-27T12:52:30.522Z","etag":null,"topics":["angular","angular-routing","desktop-app","hot-reload","native-libraries","rust","sass","tauri","typescript","webpack"],"latest_commit_sha":null,"homepage":"https://www.maximegris.fr/angular-tauri/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maximegris.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"maximegris","patreon":"user?u=37550953","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":"maximegris","otechie":null,"custom":null}},"created_at":"2022-03-13T13:03:09.000Z","updated_at":"2025-03-08T23:11:42.000Z","dependencies_parsed_at":"2024-01-07T12:03:46.155Z","dependency_job_id":null,"html_url":"https://github.com/maximegris/angular-tauri","commit_stats":null,"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximegris%2Fangular-tauri","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximegris%2Fangular-tauri/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximegris%2Fangular-tauri/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximegris%2Fangular-tauri/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maximegris","download_url":"https://codeload.github.com/maximegris/angular-tauri/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248790610,"owners_count":21162056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","angular-routing","desktop-app","hot-reload","native-libraries","rust","sass","tauri","typescript","webpack"],"created_at":"2024-08-04T00:01:11.226Z","updated_at":"2025-10-07T09:37:53.506Z","avatar_url":"https://github.com/maximegris.png","language":"TypeScript","readme":"[![Angular Logo](https://www.vectorlogo.zone/logos/angular/angular-icon.svg)](https://angular.io/) \u003cimg src=\"https://raw.githubusercontent.com/gilbarbara/logos/master/logos/tauri.svg\" width=\"50\"\u003e\n\n![Maintained][maintained-badge]\n[![Make a pull request][prs-badge]][prs]\n[![License][license-badge]](LICENSE.md)\n\n[![Build][tauri-build-badge]][tauri-build]\n\n[![Watch on GitHub][github-watch-badge]][github-watch]\n[![Star on GitHub][github-star-badge]][github-star]\n[![Tweet][twitter-badge]][twitter]\n\n# Introduction\n\nBootstrap and package your project with Angular 18 (Typescript + SASS + Hot Reload) and Tauri (Rust) for creating Desktop applications.\n\nCurrently runs with:\n\n- Angular v18.2.7\n- Tauri 2.0.0\n\nWith this sample, you can:\n\n- Run your app in a local development environment with Tauri \u0026 Hot reload\n- Run your app in a production environment\n- Package your app into an executable file for Linux, Windows \u0026 Mac\n\n/!\\ Angular CLI needs Node 22 or later to work correctly.\n\n## Getting Started\n\n*Clone this repository locally:*\n\n``` bash\ngit clone https://github.com/maximegris/angular-tauri.git\n```\n\n*Install Tauri (Rust)*\n\nhttps://tauri.studio/docs/getting-started/prerequisites\n\n*Install dependencies with npm:*\n\n``` bash\nnpm install\n```\n\nIf you want to generate Angular components with Angular-cli , you **MUST** install `@angular/cli` in npm global context.\nPlease follow [Angular-cli documentation](https://github.com/angular/angular-cli) if you had installed a previous version of `angular-cli`.\n\n``` bash\nnpm install -g @angular/cli\n```\n\nOlder @angular/cli references may grab angular version 16. To update to angular version 18 specifically for the global cli run:\n\n``` bash\nnpm install -g @angular/cli@^18\n```\n\n## To build for development\n\n- **in a terminal window** -\u003e npm start\n\nVoila! You can use your Angular + Tauri app in a local development environment with hot reload!\n\nThe application code is managed by `src-tauri/main.rs`. \\ \nIn this sample, the app runs with a simple Angular App (http://localhost:4200), and a webView managed by Tauri.\n\n## Project structure\n\n| Folder    | Description                                   |\n|-----------|-----------------------------------------------|\n| src-tauri | Tauri main process folder (Rust)              |\n| src       | Tauri renderer process folder (Web / Angular) |\n\n## Browser mode\n\nMaybe you only want to execute the application in the browser with hot reload? Just run `npm run web:serve`.\n\n## Included Commands\n\n| Command                 | Description                                                                                           |\n|-------------------------|-------------------------------------------------------------------------------------------------------|\n| `npm run web:serve`     | Execute the app in the web browser (DEV mode)                                                         |\n| `npm run web:prod`      | Build the app that can be used directly in the web browser. Your built files are in the /dist folder. |\n| `npm run tauri:bundle`  | Builds your application and creates an app consumable based on your operating system                  |\n\n**Your application is optimised. Only /dist folder is included in the final bundle.**\n\n## Branch \u0026 Packages version\n\n[maintained-badge]: https://img.shields.io/badge/maintained-yes-brightgreen\n[license-badge]: https://img.shields.io/badge/license-MIT-blue.svg\n[license]: https://github.com/maximegris/angular-tauri/blob/main/LICENSE.md\n[prs-badge]: https://img.shields.io/badge/PRs-welcome-red.svg\n[prs]: http://makeapullrequest.com\n\n[tauri-build-badge]: https://github.com/maximegris/angular-tauri/workflows/Tauri%20Build/badge.svg\n[tauri-build]: https://github.com/maximegris/angular-tauri/actions?query=workflow%3A%22Tauri+Build%22\n\n[github-watch-badge]: https://img.shields.io/github/watchers/maximegris/angular-tauri.svg?style=social\n[github-watch]: https://github.com/maximegris/angular-tauri/watchers\n[github-star-badge]: https://img.shields.io/github/stars/maximegris/angular-tauri.svg?style=social\n[github-star]: https://github.com/maximegris/angular-tauri/stargazers\n[twitter]: https://twitter.com/intent/tweet?text=Check%20out%20angular-tauri!%20https://github.com/maximegris/angular-tauri%20%F0%9F%91%8D\n[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/maximegris/angular-tauri.svg?style=social\n","funding_links":["https://github.com/sponsors/maximegris","https://patreon.com/user?u=37550953","https://issuehunt.io/r/maximegris"],"categories":["Getting Started","Angular"],"sub_categories":["Templates","Desktop Applications"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximegris%2Fangular-tauri","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaximegris%2Fangular-tauri","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximegris%2Fangular-tauri/lists"}