Skip to content

Commit

Permalink
first, modest release.
Browse files Browse the repository at this point in the history
  • Loading branch information
StreetStrider committed Mar 15, 2015
1 parent 90ff4d5 commit d6b078f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,24 @@ npm install console-ultimate
npm install StreetStrider/console-ultimate
```

# usage
```javascript
var Console = require('console-ultimate');
var console;

console = new Console(process.stdout, process.stderr);
// or:
console = Console(process.stdout, process.stderr);
// or just (if default std streams):
console = Console();

console.log('...');
```

# todo

* [x] log, info, warn, error
* [x] dir
* [ ] time, timeEnd
* [ ] trace
* [ ] assert
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "console-ultimate",
"version": "0.0.0",
"version": "0.1.0",

"description": "replacement for std console with extra features",
"tags": [ "console", "color", "cli" ],
Expand Down

0 comments on commit d6b078f

Please sign in to comment.