How I connect Claude directly to my laptop to build real projects — and how you can too.
Claude Code is Anthropic's official CLI tool that connects Claude directly to your local machine. Instead of copying and pasting code back and forth in a chat window, Claude can read your files, write code, run commands, and build entire projects right from your terminal — all in one conversation.
This is how I build. Every project on this site was touched by Claude Code in some way.
Most AI tools keep you at arm's length from your codebase. Claude Code closes that gap. It can:
It's the difference between having an AI that suggests code and one that builds alongside you.
Make sure you have Node.js installed on your machine. You can download it at nodejs.org.
Open your terminal and run:
npm install -g @anthropic-ai/claude-codeclaudeThe first time you run it, Claude Code will walk you through connecting your Anthropic account. Once authenticated, you're ready to build.
Navigate to any folder on your laptop and start a session:
cd my-project
claudeFrom there, just talk to it like you're working with another developer. For example:
"Build me a Next.js app with Tailwind CSS and a dark theme""Add a contact form that sends emails using Resend""Fix the bug on line 42 and make sure the tests still pass"Claude Code reads your codebase, makes the changes, and explains what it did.
Every project you see on this portfolio was built using this workflow:
You don't need to know how to code to start. You need to know what you want to build.
Claude Code handles the syntax. You handle the vision.
That's the whole idea behind everything I build — and the community I'm growing through Lynx Combinator.