Frontend
Frontend related cheatsheet collection - 18 quick reference guides. Find fast, copy directly. The essential online command reference for developers and SRE.
HTML Cheatsheet - HTML Tags & Attributes Reference
An HTML reference for building accessible, semantic web pages — document structure, text, lists, links & images, tables, forms, and the semantic tags that convey meaning to both browsers and screen readers.
CSS3 Cheatsheet - CSS3 Properties & Layout Reference
A CSS reference for styling pages without a framework, covering selectors, the box model, Flex/Grid layout, positioning, transitions & animation, and responsive patterns for both desktop and mobile.
Emmet Cheatsheet - Emmet Abbreviation & Syntax Reference
An Emmet abbreviation reference for anyone writing HTML/CSS by hand in VSCode, covering structure expansion, nesting & grouping, attribute and counter shortcuts, and CSS shorthand that turns long markup into a single keystroke.
CSS Flexbox Cheatsheet - Flexbox Layout Reference
A Flexbox layout reference for building one-dimensional responsive layouts, covering container vs item properties, main-axis and cross-axis alignment, grow/shrink/basis sizing, and the classic toolbar, card, and centered layouts that Flexbox handles naturally.
CSS Grid Cheatsheet - Grid Layout Reference
A CSS Grid reference for building two-dimensional page layouts, covering grid-template definitions, track sizing with fr/minmax, named areas and line placement, alignment, and responsive patterns that adapt without media queries.
HTML Meta Tags Cheatsheet - Meta Tags SEO & Configuration Reference
An HTML meta tags reference for controlling how a page appears in search and on social — SEO meta, Open Graph & Twitter Cards for sharing, viewport & responsive/theme settings, PWA manifest & theme-color, and security headers such as CSP.
Tailwind CSS Cheatsheet - Utility Class Reference
A Tailwind CSS reference for developers who build interfaces directly with utility classes — layout Flex/Grid, spacing, typography, colors, responsive breakpoints, dark mode, and animation — and the trade-offs of on-demand generation and class composition.
Next.js Cheatsheet - Next.js Framework Reference
A Next.js reference for React developers weighing SSR vs SSG, covering App Router routing and layouts, the client/server component boundary, data fetching, API routes, middleware, the static-generation vs ISR trade-off, and how the cache hierarchy affects update freshness.
Svelte Cheatsheet - Svelte Framework Reference
A Svelte reference for developers who prefer minimal runtime and compile-time reactivity, covering reactive declarations (let and $:), template syntax, events and dispatch, component communication, lifecycle, Store, and built-in transitions — and how Svelte removes a virtual-DOM runtime from the box.
JavaScript Cheatsheet - ES6+ Command Reference
An ES6+ syntax reference for frontend and full-stack developers: let/const, arrow functions, destructuring, template literals, higher-order array methods, and Promise/async-await — the patterns used most in everyday React/Vue and Node code, ready to reuse.
TypeScript Cheatsheet - Type Types & Generics Reference
For JS devs adding static types to a codebase: from basic types, interfaces and union types, to generic constraints and utility types like Partial/Pick/Omit — explained with copyable examples.
Lodash Cheatsheet - Utility Functions
A Lodash quick reference for writing safer, shorter JS without hand-rolling helpers: array transforms, safe nested property access, deep clone & merge, debounce/throttle, and handy math utilities. Copy and run.
Vue.js Cheatsheet - API Reference
A Vue 3 reference for building reactive UIs with the Composition API: ref/reactive/computed/watch, lifecycle hooks, props-emits-provide-inject communication, router, Pinia state, and template/render optimization. Copy and run.
React Cheatsheet - Hooks & Components
A React 18 reference for building component UIs with Hooks: state and effects, advanced Hooks like useReducer/Context, component patterns, controlled forms, and performance tweaks (memo, lazy, Suspense). Copy and run.
npm Cheatsheet - Node.js Package Manager Reference
npm commands across project init/scaffolding, install/update/remove, version management and lockfiles, script running and npx, dependency inspection and auditing, publishing, and config/cache. For running a Node.js project's full lifecycle without leaving the terminal.
Webpack Cheatsheet - Frontend Build Tool Configuration Reference
Webpack configuration covering entry/output, Loaders for assets, Plugins, the dev server and HMR, code splitting and bundle optimization, and mode/environment. For assembling a frontend build pipeline and fixing slow or bloated builds.
Jest Cheatsheet - Testing Framework
Jest testing APIs covering test cases and grouping (describe/it), matchers and assertions, async testing, mock functions and module mocking, snapshot tests, and coverage reports. For writing JavaScript unit tests that fail for the right reason.
Vite Cheatsheet - Vite Build Tool Command Reference
Vite build commands and config covering project initialization, the dev server, production build, environment variables, plugins, proxy and SSR builds, plus how its workflow differs from Webpack-era tooling. For scaffolding or maintaining a Vite-based frontend project.