Created
September 23, 2024 07:33
-
-
Save Xaypanya/1435a942889bcfd97bc88b81349dd7b1 to your computer and use it in GitHub Desktop.
basic gitignore for nodejs developer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Node modules | |
node_modules/ | |
# Bun dependencies | |
bun.lockb | |
.bun/ | |
# Logs | |
logs/ | |
*.log | |
npm-debug.log* | |
# Dependency directories | |
bower_components/ | |
jspm_packages/ | |
# Build output | |
dist/ | |
build/ | |
# Temporary files | |
*.tmp | |
*.swp | |
*.lock | |
# OS generated files | |
.DS_Store | |
Thumbs.db | |
# Environment variables (keep your credentials safe) | |
.env | |
.env.local | |
.env.*.local | |
# IDE files | |
.vscode/ | |
.idea/ | |
# Coverage directories | |
coverage/ | |
# Debugging files | |
debug.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment