Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tholman/console-dot-frog
Forget console logs, console.frog is where its all at!
https://github.com/tholman/console-dot-frog
Last synced: 8 days ago
JSON representation
Forget console logs, console.frog is where its all at!
- Host: GitHub
- URL: https://github.com/tholman/console-dot-frog
- Owner: tholman
- License: mit
- Created: 2016-06-07T01:11:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-20T22:44:02.000Z (about 7 years ago)
- Last Synced: 2024-04-14T07:44:29.123Z (7 months ago)
- Language: JavaScript
- Homepage: http://tholman.com/console-dot-frog
- Size: 11.7 KB
- Stars: 315
- Watchers: 6
- Forks: 23
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
### console.frog
`console.frog` is an easy way to spice up your development life. Its really that simple! Runs on vanilla javascript, in most modern browsers (the kind that has developer tools!). You can see it live [here](http://tholman.com/console-dot-frog).
### Preview
So, here's what regular life looks like:
```javascript
// Here is you, logging some logs
console.log("Boring.");
```
```
// And here is your output.
Boring.
```Wow, what a drag that was! No wonder you've become disenchanted with web development.
**NOW!** Here's what your life could be after `console.frog`
```javascript
// Here is happy you, logging some logs
console.frog("Amazing!");
``````
// And here is your output.
_,-. ------------
,-. ,--' o ) -( Amazing! )
\(,' ' ,,-' ------------
,-.\-.__,\\_
\(`--' `\
```Wow. That feels good!
### Usage
Simply include the `console.frog.js` file into your app!or using npm and Node.js, just run...
```
npm install console-dot-frog
```
...in your terminal, then include...
```
import 'console-dot-frog';
```
...at the top of the file you want to use it in.### License
Copyright (c) 2016 Tim Holman - http://tholman.comThe MIT License