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 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Electron ChromeDriver
  2. [![Linux and Mac Build Status](https://circleci.com/gh/electron/chromedriver/tree/master.svg?style=shield)](https://circleci.com/gh/electron/chromedriver/tree/master)
  3. [![Windows Build status](https://ci.appveyor.com/api/projects/status/43safb37jdlaeviw/branch/master?svg=true)](https://ci.appveyor.com/project/electron-bot/chromedriver/branch/master)
  4. <br>
  5. [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)
  6. [![devDependencies:?](https://img.shields.io/david/electron/chromedriver.svg)](https://david-dm.org/electron/chromedriver)
  7. <br>
  8. [![license:mit](https://img.shields.io/badge/license-mit-blue.svg)](https://opensource.org/licenses/MIT)
  9. [![npm:](https://img.shields.io/npm/v/electron-chromedriver.svg)](https://www.npmjs.com/package/electron-chromedriver)
  10. [![dependencies:?](https://img.shields.io/npm/dm/electron-chromedriver.svg)](https://www.npmjs.com/packages/electron-chromedriver)
  11. Simple node module to download the [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver)
  12. version for [Electron](http://electron.atom.io).
  13. The major version of this library tracks the major version of the Electron
  14. versions released. So if you are using Electron `2.0.x` you would want to use
  15. an `electron-chromedriver` dependency of `~2.0.0` in your `package.json` file.
  16. This library is used by [spectron](https://github.com/electron/spectron).
  17. ## Using
  18. ```sh
  19. npm install --save-dev electron-chromedriver
  20. chromedriver -h
  21. ```
  22. ## Custom Mirror
  23. You can set the `ELECTRON_MIRROR` or [`NPM_CONFIG_ELECTRON_MIRROR`](https://docs.npmjs.com/misc/config#environment-variables)
  24. environment variables to use a custom base URL for downloading ChromeDriver zips.
  25. ```sh
  26. # Electron mirror for China
  27. ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/"
  28. # Local mirror
  29. # Example of requested URL: http://localhost:8080/1.2.0/chromedriver-v2.21-darwin-x64.zip
  30. ELECTRON_MIRROR="http://localhost:8080/"
  31. ```
  32. ## Overriding the version downloaded
  33. The version downloaded can be overriden by setting the `ELECTRON_CUSTOM_VERSION` environment variable.