8

ఎనిమిదవ అధ్యాయం

భాష
మాట్లాడటం

Building vocabulary —
code కాదు, nouns మరియు verbs మాత్రమే.

నువ్వు coding agent తో కూర్చొని ఏదైనా build చేయబోతున్నావ్. అది "deploy," "endpoint," "component," "schema" లాంటి words వాడుతుంది. ఆ words అర్థం కాకపోతే, lost అయినట్లు feel అవుతావ్ — build చేయలేక కాదు, direct చేయలేక. ఈ chapter నీకు decoder ring ఇస్తుంది. Code ఎలా రాయాలో కాదు. Building భాష ఎలా మాట్లాడాలో.

Car drive చేయడం లాగా ఆలోచించు. Combustion engines, transmission ratios, brake fluid pressure అర్థమవ్వాల్సిన అవసరం లేదు. తెలియాల్సింది: accelerator, brake, steering wheel, mirrors. Direction vocabulary, implementation vocabulary కాదు.

Stack: ఒక Decoder Ring

ప్రతి app — Instagram నుండి simple to-do list వరకు — నాలుగు layers తో build అవుతుంది. Developers దీన్ని "the stack" అంటారు. ఇదిగో, demystified:

Frontend

మనుషులు చూసేది, touch చేసేది. Buttons, text, images, animations. Restaurant dining room.

Backend

వెనక జరిగే logic. Requests process చేస్తుంది, passwords check చేస్తుంది, emails పంపిస్తుంది. Kitchen.

Database

App విషయాలు గుర్తుపెట్టుకునే చోటు. User accounts, posts, settings. Pantry మరియు recipe book.

Deployment

Internet లోకి ఎలా వెళ్తుంది. Hosting, domains, live అవడం. Restaurant doors open చేయడం.

అంతే. నువ్వు ఎప్పుడైనా వాడిన ప్రతి app ఈ నాలుగు layers combination. నీ coding agent "backend set up చేస్తాను" అంటే "behind-the-scenes logic రాస్తాను" అని అర్థం. "Deploy చేద్దాం" అంటే "internet లో పెడదాం" అని అర్థం. ఈ layers ఎలా పని చేస్తాయో తెలియాల్సిన అవసరం లేదు. అవి ఉన్నాయని మరియు ఏంటికో తెలిస్తే చాలు.

Agent నీ Tutor

ఎవరూ చెప్పని విషయం ఇది: coding agent నీ teacher కూడా. "npm" అంటే ఏంటో తెలియదా? అడుగు. Error message confusing గా ఉందా? Paste చెయ్యి, "ఇది developer కాని వాడికి explain చెయ్యి" అను. Agent ఎందుకు React ఎంచుకుందో తెలుసుకోవాలనుకుంటున్నావా? అడుగు. Plain English లో step by step explain చేస్తుంది, నీకు ఎన్నిసార్లు కావాలంటే అన్నిసార్లు.

నీ మొదటి ఐదు నిమిషాలు

Coding tool open చెయ్యి. Plain English లో నీ project describe చెయ్యి: "నేను workout tracker build చేయాలనుకుంటున్నాను, నా exercises log చేసి progress చూడగలిగేలా." Agent clarifying questions అడుగుతుంది, stack suggest చేస్తుంది, build చేయడం start చేస్తుంది. నీ మొదటి పని దాని questions కి answer ఇవ్వడం మరియు అది ఏం create చేస్తుందో చూడడం.

Web app యొక్క నాలుగు layers explore చెయ్యి. Vocabulary నేర్చుకోవడానికి click చెయ్యి — ఆ తర్వాత నిన్ను నువ్వు test చేసుకో.

The Stack Decoder

Click a layer to explore its vocabulary

The frontend is everything a user interacts with — buttons, text, images, forms, animations. It runs in the browser on the user's device.

Think of a restaurant. The frontend is the dining room — the menu, the tables, the decor. It's what customers experience.

Nouns (the things)
Component

A reusable piece of the interface, like a button or a card.

ReactVueSvelte
Page

A single screen or view in your app.

Home pageSettings pageProfile page
Style

How things look — colors, fonts, spacing, layout.

CSSTailwindSass
State

Data that can change — like whether a menu is open or a form field is filled.

Dark mode on/offItem count in cartCurrent tab
Verbs (the actions)
RenderDisplay something on screen. When a page renders, it becomes visible.
NavigateMove from one page to another.
Handle eventsReact to user actions like clicks, typing, or scrolling.

The backend is the server-side code that processes requests, applies business logic, and communicates with the database. Users never see it directly.

The backend is the kitchen. Orders come in, the kitchen prepares them, and sends out the finished dish. Customers don't see the kitchen, but nothing works without it.

Nouns (the things)
Server

A computer that listens for requests and sends back responses.

Node.jsPython/FlaskGo
API

A set of rules for how the frontend talks to the backend. Like a waiter taking orders.

REST APIGraphQLtRPC
Endpoint

A specific URL the frontend can call to get or send data.

/api/users/api/login/api/posts
Authentication

Verifying who a user is — login systems, passwords, sessions.

JWT tokensOAuthCookies
Verbs (the actions)
FetchRequest data from the backend. "The app fetches your profile from the server."
ProcessApply logic to data — calculate, validate, transform.
AuthorizeCheck if a user has permission to do something.

The database stores all the persistent data — user accounts, posts, settings, anything that needs to survive a page refresh or server restart.

The database is the pantry and the recipe book. It stores all the ingredients (data) and keeps them organized so the kitchen (backend) can find them fast.

Nouns (the things)
Table

A structured collection of data, like a spreadsheet. Each row is a record.

Users tablePosts tableOrders table
Schema

The blueprint for your data — what fields exist and what type of data each holds.

name: textage: numbercreated_at: date
Query

A request to find, add, update, or delete data in the database.

SELECT * FROM usersINSERT INTO postsDELETE FROM comments
Migration

A change to your database structure — like adding a new column to a table.

Add email fieldCreate orders tableRemove old column
Verbs (the actions)
StoreSave data so it persists. "Store the user's preferences in the database."
QueryAsk the database for specific data. "Query all users who signed up today."
MigrateUpdate the database structure without losing existing data.

Deployment is the process of taking your app from your computer and putting it on the internet where anyone can use it. It includes hosting, domains, and keeping things running.

Deployment is opening the restaurant. You've built the dining room, hired the kitchen staff, stocked the pantry — now you unlock the front door and put up a sign.

Nouns (the things)
Hosting

A service that runs your app on the internet 24/7.

VercelNetlifyRailwayFly.io
Domain

Your app's address on the internet — the URL people type to find you.

myapp.comcool-project.vercel.app
Environment Variables

Secret settings (like API keys) stored outside your code so they stay private.

API_KEY=abc123DATABASE_URL=...
Build

The process of converting your source code into optimized files ready to serve.

npm run buildProduction buildStatic export
Verbs (the actions)
DeployPush your app to the internet. "Deploy to Vercel" means put it live.
BuildPrepare your code for production — optimize, bundle, compress.
MonitorWatch your app for errors, slowdowns, or crashes after it's live.
Share this course
Engine ఎలా పని చేస్తుందో తెలియాల్సిన అవసరం లేదు. Drive చేయడం తెలిస్తే చాలు.

Words తెలుసు. Idea ఉంది. ఇప్పుడు coding agent తో కూర్చొని నిజంగా build చేసే సమయం. తర్వాత: build loop — iteration, evaluation, విషయాలు break అయినప్పుడు ఏం చేయాలో.

Complexity Score

New tool unlocked!