Where can I find information about Javascript engi

2020-05-11 10:51发布

I'm looking for books / articles / papers on Javascript engine internals along the lines of the many reference works about the JVM internals, CLR internals, etc. I could (and likely will) look at the source code for JavaScriptCore and V8/Chromium, but if there's a book out there or some other "guided tour" documentation, I'd prefer to read them first. Thanks.

3条回答
Luminary・发光体
2楼-- · 2020-05-11 11:04

One of the in-depth documents could be the ECMA-262 Language Specifications.

A good book on the language's idioms and best practices is JavaScript The Good Parts

查看更多
Rolldiameter
3楼-- · 2020-05-11 11:13

I was curious about this too, and here's what I found:

About Chrome's Javascript engine (v8):

About Firefox Javascript Engine (Spidermonkey):

About IE 9+ Javascript Engine (Chakra):

About Safari Javascript engine (SquirrelFish):

General overview:

查看更多
乱世女痞
4楼-- · 2020-05-11 11:25

Google have documented a lot about V8. http://code.google.com/p/v8/ There are some interesting videos on the main page ( although you've probably already seen those )

查看更多
登录 后发表回答