.gitignore Builder
Pick languages, frameworks, build tools, editors and OS — get a deduped .gitignore.
Languages
Frameworks
Build tools
Editors / OS
.gitignore (3 templates)
# Generated by BEAD .gitignore Builder ### Node node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* .pnpm-store/ package-lock.json.bak ### macOS .DS_Store .AppleDouble .LSOverride Icon ._* .Spotlight-V100 .Trashes ### VS Code .vscode/* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json *.code-workspace
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/gitignore-builder/run \
-H "Content-Type: application/json" \
-d '{
"templates": [
"node"
]
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/gitignore-builder/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"templates": [
"node"
]
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_gitignore_builderFull reference: developer docs · OpenAPI spec
Curated set
BEAD ships ~30 hand-picked templates covering the languages, frameworks, build tools, and editors / OS files you actually see in production. We deliberately don't mirror the full github/gitignore catalog — that's noisier than helpful.
Layout
Selected templates are concatenated with a header per section so you can see which entries came from where.
You might also like
- .gitignore GeneratorBuild a .gitignore by picking from common language, framework, and OS templates.
- Dockerfile StarterMulti-stage Dockerfiles for Node, Python, PHP, Go, Ruby, Rust, Java, and static sites — plus matching .dockerignore.
- GitHub Actions StarterWorkflow YAML for Node CI, Python pytest, Go, Rust, Docker build/push, or GitHub Pages deploy.
- Hashing Snippet GeneratorMD5 / SHA-1 / SHA-256 / SHA-512 / HMAC-SHA256 snippets in Node, browser, Python, PHP, Ruby, Go, Rust, and shell.