Settings

Theme

Ask HN: Readings to more deeply understand JavaScript?

16 points by hnthrow10282910 3 years ago · 6 comments (5 loaded) · 1 min read

Reader

I’m looking for recommended readings to more deeply understand JavaScript. In particular, things like Cloudflare Workers, their internals, build systems, etc.

I’ve been coding in JS for years, but would like to dive a bit deeper into the ecosystem around it.

e1g 3 years ago

For JS in general: anything from https://2ality.com - articles, books, walk-throughs, etc. Axel is thorough and systemically reconstructs complex topics from core building blocks.

For Cloudflare Workers specifically: first, learn regular Web Workers, then read everything from kentonv who's the tech lead for CF Workers, and a user here. He's written many (disjointed) pieces on Workers both here on HN and on the CF community board. Additionally, Cloudflare Developers Discord (https://discord.com/invite/cloudflaredev) has a very active channel for Workers with people discussing implementation details and edge cases.

alexdowad 3 years ago

If you want to know JS deeply, I think reading the EcmaScript language specification is a very good step. I've read through it before; it's quite long but not overly difficult reading.

Studying the source code for a JS implementation is also a good step. QuickJS is a good one.

Raed667 3 years ago

Build things, get stuck, read the docs, build more things, repeat.

majortennis 3 years ago

anything by kyle simpson

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection