Skip to content
BEAD

.gitignore Generator

Build a .gitignore by picking from common language, framework, and OS templates.

Language
Framework
OS
Editor
.gitignore
# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.npm
.yarn-integrity
.pnp.*
*.tgz
.cache/

# Next.js
.next/
out/
.vercel
next-env.d.ts

# macOS
.DS_Store
.AppleDouble
.LSOverride
Icon

._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.Trashes

# VS Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Env files
.env
.env.local
.env*.local
.env.development
.env.production

# Logs & temp
*.log
*.tmp
*.bak
*.swp
.cache/
coverage/

You might also like