Hacker News new | ask | show | jobs
Ask HN: Where can I find a list of all JavaScript Web APIs objects and methods?
2 points by multiversecoder 2003 days ago
For my side project I need a textual list of all the objects and their Javascript methods implemented by the browser to parse them for my purposes. Is there something similar on the web, without any markup, maybe in a gist?
3 comments

In Developer console you can console.log all the objects and methods of 1. Window, 2. global and etc.
I've done with https://github.com/siongui/godom. This package is very easy to parse because it uses Go.

Thanks