Pre-built devcontainer for frontend applications — React, Vue, Angular, Next.js, Remix, and any Node-based project. Works for both human developers and AI coding agents.
| Tool | Version | Purpose |
|---|---|---|
| Node.js | 26 | Runtime and package management |
| npm / pnpm / yarn | via corepack | Package managers (corepack enable pnpm to activate pnpm) |
| Docker-outside-of-Docker | latest | Build images and run containers via the host Docker socket |
| kubectl | 1.36 | Deploy to and inspect Kubernetes clusters |
| Helm | 4.1.4 | Install and manage Helm charts |
| k3d | 5.8.3 | Local Kubernetes cluster (auto-started on container start) |
| git | latest | Source control |
GitHub CLI (gh) |
2.92.0 | PRs, issues, releases, Actions |
| Extension | Purpose |
|---|---|
github.copilot |
AI completions |
github.copilot-chat |
AI chat and inline edits |
anthropics.claude-code |
Claude Code agent |
esbenp.prettier-vscode |
Code formatting |
dbaeumer.vscode-eslint |
Linting |
bradlc.vscode-tailwindcss |
Tailwind CSS IntelliSense |
corepack is bundled with Node.js. Enable pnpm once inside the container:
corepack enable pnpm
pnpm installOr add it to your service repo's postCreateCommand:
{
"postCreateCommand": "corepack enable pnpm && pnpm install"
}{
"forwardPorts": [3000, 6006],
"portsAttributes": {
"3000": { "label": "App" },
"6006": { "label": "Storybook" }
}
}A k3d cluster starts automatically. Build an image and deploy:
docker build -t my-frontend:local .
helm upgrade --install my-frontend ./charts/my-frontend \
--set image.repository=my-frontend \
--set image.tag=localGITHUB_TOKENis forwarded soghand git work without prompts.- Claude Code and Copilot extensions are pre-installed.
- Agents can run
npm test,npm run build, and validate output without leaving the container.
Edit images/frontend-dev/Dockerfile and change the NodeSource channel:
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_26.x nodistro main" \Replace node_26.x with the desired major version (e.g. node_28.x).