switch·Esc back

Tech Stack

You might say

When someone asks what tech stack I use, what am I supposed to say?

The set of languages, frameworks, data services, and tools used to build and run softwareA website might combine JavaScript, React, a database, build tools, and hosting. They handle different jobs: page behavior, interface, data, and operation. Start by learning what the project already uses before replacing several layers at once.
Know first
Which tools make a to-do app run?
todo-appcomponents/task.tsxapp/page.tsxstyles/task.csspackage.json
components/task.tsx
1const [tasks, setTasks] = useState([])
2onClick={() => addTask("Buy milk")}
localhost:3000
Today○ Buy milk
The language describes what happens after a click
How a set of tools becomes one working project

Write the contentThe page needs source files before a browser can show anything.

Connect the rolesSome tools organize the page, some set spacing and color, and others start it on a computer or server.

Use only what fitsA combination that opens, responds, and ships the current project is enough.

Learn next