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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Luxon
  2. [![MIT License][license-image]][license] [![Build Status][travis-image]][travis-url] [![NPM version][npm-version-image]][npm-url] [![Coverage Status][test-coverage-image]][test-coverage-url] [![Doc coverage][doc-coverage-image]][doc-url] [![PRs welcome][contributing-image]][contributing-url]
  3. Luxon is a library for working with dates and times in JavaScript.
  4. ```js
  5. DateTime.now().setZone("America/New_York").minus({ weeks: 1 }).endOf("day").toISO();
  6. ```
  7. ## Features
  8. * DateTime, Duration, and Interval types.
  9. * Immutable, chainable, unambiguous API.
  10. * Parsing and formatting for common and custom formats.
  11. * Native time zone and Intl support (no locale or tz files).
  12. ## Download/install
  13. [Download/install instructions](https://moment.github.io/luxon/docs/manual/install.html)
  14. ## Documentation
  15. * [General documentation][doc-url]
  16. * [API docs](https://moment.github.io/luxon/docs/identifiers.html)
  17. * [Quick tour](https://moment.github.io/luxon/docs/manual/tour.html)
  18. * [For Moment users](https://moment.github.io/luxon/docs/manual/moment.html)
  19. * [Why does Luxon exist?](https://moment.github.io/luxon/docs/manual/why.html)
  20. * [A quick demo](https://moment.github.io/luxon/demo/global.html)
  21. ## Development
  22. See [contributing](contributing.md).
  23. ![Phasers to stun][phasers-image]
  24. [license-image]: http://img.shields.io/badge/license-MIT-blue.svg
  25. [license]: license.md
  26. [travis-url]: http://travis-ci.org/moment/luxon
  27. [travis-image]: https://api.travis-ci.org/moment/luxon.svg?branch=master
  28. [npm-url]: https://npmjs.org/package/luxon
  29. [npm-version-image]: https://badge.fury.io/js/luxon.svg
  30. [doc-url]: https://moment.github.io/luxon/docs/
  31. [doc-coverage-image]: https://moment.github.io/luxon/docs/badge.svg
  32. [test-coverage-url]: https://codecov.io/gh/moment/luxon
  33. [test-coverage-image]: https://codecov.io/gh/moment/luxon/branch/master/graph/badge.svg
  34. [contributing-url]: https://moment.github.io/luxon/docs/manual/contributing.html
  35. [contributing-image]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg
  36. [phasers-image]: https://img.shields.io/badge/phasers-stun-brightgreen.svg