Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. [![Electron Logo](https://electronjs.org/images/electron-logo.svg)](https://electronjs.org)
  2. [![CircleCI Build Status](https://circleci.com/gh/electron/electron/tree/master.svg?style=shield)](https://circleci.com/gh/electron/electron/tree/master)
  3. [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/4lggi9dpjc1qob7k/branch/master?svg=true)](https://ci.appveyor.com/project/electron-bot/electron-ljo26/branch/master)
  4. [![devDependency Status](https://david-dm.org/electron/electron/dev-status.svg)](https://david-dm.org/electron/electron?type=dev)
  5. [![Electron Discord Invite](https://img.shields.io/discord/745037351163527189?color=%237289DA&label=chat&logo=discord&logoColor=white)](https://discord.com/invite/electron)
  6. :memo: Available Translations: 🇨🇳 🇧🇷 🇪🇸 🇯🇵 🇷🇺 🇫🇷 🇺🇸 🇩🇪.
  7. View these docs in other languages at [electron/i18n](https://github.com/electron/i18n/tree/master/content/).
  8. The Electron framework lets you write cross-platform desktop applications
  9. using JavaScript, HTML and CSS. It is based on [Node.js](https://nodejs.org/) and
  10. [Chromium](https://www.chromium.org) and is used by the [Atom
  11. editor](https://github.com/atom/atom) and many other [apps](https://electronjs.org/apps).
  12. Follow [@ElectronJS](https://twitter.com/electronjs) on Twitter for important
  13. announcements.
  14. This project adheres to the Contributor Covenant
  15. [code of conduct](https://github.com/electron/electron/tree/master/CODE_OF_CONDUCT.md).
  16. By participating, you are expected to uphold this code. Please report unacceptable
  17. behavior to [coc@electronjs.org](mailto:coc@electronjs.org).
  18. ## Installation
  19. To install prebuilt Electron binaries, use [`npm`](https://docs.npmjs.com/).
  20. The preferred method is to install Electron as a development dependency in your
  21. app:
  22. ```sh
  23. npm install electron --save-dev
  24. ```
  25. For more installation options and troubleshooting tips, see
  26. [installation](docs/tutorial/installation.md). For info on how to manage Electron versions in your apps, see
  27. [Electron versioning](docs/tutorial/electron-versioning.md).
  28. ## Quick start & Electron Fiddle
  29. Use [`Electron Fiddle`](https://github.com/electron/fiddle)
  30. to build, run, and package small Electron experiments, to see code examples for all of Electron's APIs, and
  31. to try out different versions of Electron. It's designed to make the start of your journey with
  32. Electron easier.
  33. Alternatively, clone and run the
  34. [electron/electron-quick-start](https://github.com/electron/electron-quick-start)
  35. repository to see a minimal Electron app in action:
  36. ```sh
  37. git clone https://github.com/electron/electron-quick-start
  38. cd electron-quick-start
  39. npm install
  40. npm start
  41. ```
  42. ## Resources for learning Electron
  43. - [electronjs.org/docs](https://electronjs.org/docs) - All of Electron's documentation
  44. - [electron/fiddle](https://github.com/electron/fiddle) - A tool to build, run, and package small Electron experiments
  45. - [electron/electron-quick-start](https://github.com/electron/electron-quick-start) - A very basic starter Electron app
  46. - [electronjs.org/community#boilerplates](https://electronjs.org/community#boilerplates) - Sample starter apps created by the community
  47. - [electron/simple-samples](https://github.com/electron/simple-samples) - Small applications with ideas for taking them further
  48. - [electron/electron-api-demos](https://github.com/electron/electron-api-demos) - An Electron app that teaches you how to use Electron
  49. - [hokein/electron-sample-apps](https://github.com/hokein/electron-sample-apps) - Small demo apps for the various Electron APIs
  50. ## Programmatic usage
  51. Most people use Electron from the command line, but if you require `electron` inside
  52. your **Node app** (not your Electron app) it will return the file path to the
  53. binary. Use this to spawn Electron from Node scripts:
  54. ```javascript
  55. const electron = require('electron')
  56. const proc = require('child_process')
  57. // will print something similar to /Users/maf/.../Electron
  58. console.log(electron)
  59. // spawn Electron
  60. const child = proc.spawn(electron)
  61. ```
  62. ### Mirrors
  63. - [China](https://npm.taobao.org/mirrors/electron)
  64. ## Documentation Translations
  65. Find documentation translations in [electron/i18n](https://github.com/electron/i18n).
  66. ## Contributing
  67. If you are interested in reporting/fixing issues and contributing directly to the code base, please see [CONTRIBUTING.md](CONTRIBUTING.md) for more information on what we're looking for and how to get started.
  68. ## Community
  69. Info on reporting bugs, getting help, finding third-party tools and sample apps,
  70. and more can be found in the [support document](docs/tutorial/support.md#finding-support).
  71. ## License
  72. [MIT](https://github.com/electron/electron/blob/master/LICENSE)
  73. When using the Electron or other GitHub logos, be sure to follow the [GitHub logo guidelines](https://github.com/logos).