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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # log-symbols
  2. <img src="screenshot.png" width="226" height="192" align="right">
  3. > Colored symbols for various log levels
  4. Includes fallbacks for Windows CMD which only supports a [limited character set](https://en.wikipedia.org/wiki/Code_page_437).
  5. ## Install
  6. ```
  7. $ npm install log-symbols
  8. ```
  9. ## Usage
  10. ```js
  11. const logSymbols = require('log-symbols');
  12. console.log(logSymbols.success, 'Finished successfully!');
  13. // Terminals with Unicode support: ✔ Finished successfully!
  14. // Terminals without Unicode support: √ Finished successfully!
  15. ```
  16. ## API
  17. ### logSymbols
  18. #### info
  19. #### success
  20. #### warning
  21. #### error
  22. ## Related
  23. - [figures](https://github.com/sindresorhus/figures) - Unicode symbols with Windows CMD fallbacks
  24. - [py-log-symbols](https://github.com/ManrajGrover/py-log-symbols) - Python port
  25. - [log-symbols](https://github.com/palash25/log-symbols) - Ruby port
  26. - [guumaster/logsymbols](https://github.com/guumaster/logsymbols) - Golang port
  27. ---
  28. <div align="center">
  29. <b>
  30. <a href="https://tidelift.com/subscription/pkg/npm-log-symbols?utm_source=npm-log-symbols&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
  31. </b>
  32. <br>
  33. <sub>
  34. Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
  35. </sub>
  36. </div>