nodejs/doc/api/stdio.markdown

61 lines
1.1 KiB
Markdown
Raw Normal View History

2012-02-27 11:09:34 -08:00
# console
Stability: 4 - API Frozen
2012-02-27 11:09:34 -08:00
* {Object}
<!--type=global-->
2011-04-18 16:52:53 -07:00
For printing to stdout and stderr. Similar to the console object functions
provided by most web browsers, here the output is sent to stdout or stderr.
2011-04-18 16:52:53 -07:00
2012-02-27 11:09:34 -08:00
## console.log()
2011-04-18 16:52:53 -07:00
Prints to stdout with newline. This function can take multiple arguments in a
`printf()`-like way. Example:
console.log('count: %d', count);
2011-11-25 18:26:11 -08:00
If formatting elements are not found in the first string then `util.inspect`
is used on each argument.
2011-11-25 18:26:11 -08:00
See [util.format()](util.html#util.format) for more information.
2011-04-18 16:52:53 -07:00
2012-02-27 11:09:34 -08:00
## console.info()
2011-04-18 16:52:53 -07:00
Same as `console.log`.
2012-02-27 11:09:34 -08:00
## console.warn()
## console.error()
2011-04-18 16:52:53 -07:00
Same as `console.log` but prints to stderr.
2012-02-27 11:09:34 -08:00
## console.dir(obj)
2011-04-18 16:52:53 -07:00
Uses `util.inspect` on `obj` and prints resulting string to stdout.
2011-04-18 16:52:53 -07:00
2012-02-27 11:09:34 -08:00
## console.time(label)
2011-04-18 16:52:53 -07:00
Mark a time.
2012-02-27 11:09:34 -08:00
## console.timeEnd(label)
2011-04-18 16:52:53 -07:00
Finish timer, record output. Example
console.time('100-elements');
for (var i = 0; i < 100; i++) {
2011-04-18 16:52:53 -07:00
;
}
console.timeEnd('100-elements');
2012-02-27 11:09:34 -08:00
## console.trace()
2011-04-18 16:52:53 -07:00
Print a stack trace to stderr of the current position.
2012-02-27 11:09:34 -08:00
## console.assert()
2011-04-18 16:52:53 -07:00
Same as `assert.ok()`.