Around July 30, 2025, students practiced with VS Code, the Terminal, and Git Workflow. Focus was on reinforcing core developer tools before moving into event-driven programming and data. —
The primary IDE for writing and managing code.
settings.json.editor.formatOnSave: true → auto-format on save.files.autoSave: "afterDelay" → auto-save changes.Alt-Shift-F.! + Tab.Command-line interface integrated in VS Code for running Git and Node.js. → Related: Mkdir
A version control system.
git init → initialize repo.git add → stage changes.git commit -m "message" → save snapshot.git push → send changes to remote.git add → git commit → git push.Platform for hosting repos and collaborating.
A JavaScript runtime to run JS outside browsers.
"node is not defined" indicate installation/configuration issues.
→ Related: JavaScriptCloud storage service.
Programming language for interactivity.
Core web language for structure. → Related: Boilerplate, Tag (HTML)
Styles and layouts for HTML. → Related: Flex (Flexbox), Opacity (CSS)
Simple JS object for data practice (mirrors JSON). → Related: Destructure
Store values in code (var, const).
→ Related: Week 6 Variables, Counter Pattern
Tabs/spaces for code readability.
Alt-Shift-F.Steps for new projects:
git init → git add → git commit → git push.
→ Related: Git WorkflowOnline sub-rooms for collaboration, e.g., debugging "node not defined".