Clear, visual explanations of JavaScript and web fundamentals — optimized for humans and AI search engines.
A content-first technical knowledge site where:
- Each page explains one concept deeply
- Mental models come before syntax
- Visuals explain what words can’t
- Content is evergreen and structured
Most explanations online are either:
- Too shallow
- Too verbose
- Too abstract
- Too focused on trends
This project focuses on first-principles understanding.
- Astro (static, zero JS by default)
- MDX for content
- SVG diagrams
- Static hosting (Vercel / Netlify)
Each article follows a strict structure:
- Short Answer
- Why It Exists
- Core Mental Model
- Step-by-Step Execution
- Diagrams
- Code Examples
- Common Mistakes
- Practical Checklist
- FAQ
- Summary
pnpm create astro@latest -- --template basics🧑🚀 Seasoned astronaut? Delete this file. Have fun!
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
│ └── favicon.svg
├── src
│ ├── assets
│ │ └── astro.svg
│ ├── components
│ │ └── Welcome.astro
│ ├── layouts
│ │ └── Layout.astro
│ └── pages
│ └── index.astro
└── package.json
To learn more about the folder structure of an Astro project, refer to our guide on project structure.
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
pnpm install |
Installs dependencies |
pnpm dev |
Starts local dev server at localhost:4321 |
pnpm build |
Build your production site to ./dist/ |
pnpm preview |
Preview your build locally, before deploying |
pnpm astro ... |
Run CLI commands like astro add, astro check |
pnpm astro -- --help |
Get help using the Astro CLI |
Feel free to check our documentation or jump into our Discord server.