Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
39
node_modules/log-symbols/readme.md
generated
vendored
Normal file
39
node_modules/log-symbols/readme.md
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
# log-symbols
|
||||
|
||||
<img src="screenshot.png" width="226" height="192" align="right">
|
||||
|
||||
> Colored symbols for various log levels
|
||||
|
||||
Includes fallbacks for Windows CMD which only supports a [limited character set](https://en.wikipedia.org/wiki/Code_page_437).
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install log-symbols
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import logSymbols from 'log-symbols';
|
||||
|
||||
console.log(logSymbols.success, 'Finished successfully!');
|
||||
// Terminals with Unicode support: ✔ Finished successfully!
|
||||
// Terminals without Unicode support: √ Finished successfully!
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### logSymbols
|
||||
|
||||
#### info
|
||||
#### success
|
||||
#### warning
|
||||
#### error
|
||||
|
||||
## Related
|
||||
|
||||
- [figures](https://github.com/sindresorhus/figures) - Unicode symbols with Windows CMD fallbacks
|
||||
- [py-log-symbols](https://github.com/ManrajGrover/py-log-symbols) - Python port
|
||||
- [log-symbols](https://github.com/palash25/log-symbols) - Ruby port
|
||||
- [guumaster/logsymbols](https://github.com/guumaster/logsymbols) - Golang port
|
Reference in New Issue
Block a user