Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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.0KB

4 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # log-symbols [![Build Status](https://travis-ci.org/sindresorhus/log-symbols.svg?branch=master)](https://travis-ci.org/sindresorhus/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. // On good OSes: ✔ Finished successfully!
  14. // On Windows: √ 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. ## License
  27. MIT © [Sindre Sorhus](https://sindresorhus.com)