0

Could any one point me to the [v8 javascript API documentation to work in c] so that I could find proper functions, their uses and return types for doing things, the various API's available on internet are old and the newer v8 is particularly not compatible with those (pre 2013)

prashant
  • 196
  • 2
  • 13

2 Answers2

0

check this out..

http://izs.me/v8-docs/namespacev8.html

This set of documents provides reference material generated from the V8 header file;

And For other documentation check this

http://code.google.com/apis/v8/

Swarnendu Paul
  • 3,789
  • 3
  • 25
  • 52
  • 1
    Unfortunately that link is to a much older version of the API that predates the addition of `v8::Isolate`, among other things. – fluffy Nov 12 '14 at 23:16
0

I've created a GitHub repository that is intended as up-to-date v8 API reference. Check out: http://peerigon.github.io/v8-docs/

To update the documentation, just fork the repo and run doxygen: https://github.com/peerigon/v8-docs

Johannes Ewald
  • 16,960
  • 4
  • 40
  • 35