[v8-users] Re: How to put console.log in V8 javascript file?

2015-07-14 Thread Richard Emerson
Forgive me if this is a total noob question, but what is the nearest equivalent in 'bare' V8? I naively assume that there must be some way to write to stdout/stderr from JS running in V8, but is that actually the case? If we were to do it ourselves, how might we do that - is it even

Re: [v8-users] Re: How to put console.log in V8 javascript file?

2015-07-14 Thread 'Andreas Rossberg' via v8-users
On 14 July 2015 at 16:38, Richard Emerson richard.emer...@gmail.com wrote: Forgive me if this is a total noob question, but what is the nearest equivalent in 'bare' V8? I naively assume that there must be some way to write to stdout/stderr from JS running in V8, but is that actually the

[v8-users] Re: How to put console.log in V8 javascript file?

2015-03-06 Thread Flying Jester
The `console' object is not a part of JavaScript. It's standard in Web JS, but no JS engine on its own provides that. If you want some way to log from JS, you will have to do it yourself. -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You