TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Readings to more deeply understand JavaScript?

16 pointsby hnthrow10282910over 2 years ago
I’m looking for recommended readings to more deeply understand JavaScript. In particular, things like Cloudflare Workers, their internals, build systems, etc.<p>I’ve been coding in JS for years, but would like to dive a bit deeper into the ecosystem around it.

4 comments

e1gover 2 years ago
For JS in general: anything from <a href="https:&#x2F;&#x2F;2ality.com" rel="nofollow">https:&#x2F;&#x2F;2ality.com</a> - articles, books, walk-throughs, etc. Axel is thorough and systemically reconstructs complex topics from core building blocks.<p>For Cloudflare Workers specifically: first, learn regular Web Workers, then read everything from kentonv who&#x27;s the tech lead for CF Workers, and a user here. He&#x27;s written many (disjointed) pieces on Workers both here on HN and on the CF community board. Additionally, Cloudflare Developers Discord (<a href="https:&#x2F;&#x2F;discord.com&#x2F;invite&#x2F;cloudflaredev" rel="nofollow">https:&#x2F;&#x2F;discord.com&#x2F;invite&#x2F;cloudflaredev</a>) has a very active channel for Workers with people discussing implementation details and edge cases.
评论 #33685845 未加载
alexdowadover 2 years ago
If you want to know JS deeply, I think reading the EcmaScript language specification is a very good step. I&#x27;ve read through it before; it&#x27;s quite long but not overly difficult reading.<p>Studying the source code for a JS implementation is also a good step. QuickJS is a good one.
Raed667over 2 years ago
Build things, get stuck, read the docs, build more things, repeat.
majortennisover 2 years ago
anything by kyle simpson