dev-dict
v0.11.10
Published
A community-driven collection of software development terms with explanations in multiple languages. Perfect for building multilingual developer tools, documentation sites, and educational platforms.
Maintainers
Keywords
Readme
dev-dict
A community-driven collection of software development terms with explanations in multiple languages. Perfect for building developer tools, documentation sites, educational content and much more.
Installation
npm install dev-dictQuick Start
import { terms } from 'dev-dict'
import { getTerms } from 'dev-dict/utils'
// Translate to specified locale
const dictionary = getTerms({ terms, locale: 'en-US' })
// Display terms
dictionary.forEach(term => {
console.log(term.name) // "React"
console.log(term.label) // "JavaScript Library"
})For detailed API documentation, code examples, and more, visit the documentation.
Supported Languages
| Locale | Language | Status |
|--------|----------|--------|
| en-US | English (United States) | ✅ Primary |
| en-GB | English (Great Britain) | ✅ Supported |
| de-DE | German (Germany) | ✅ Supported |
Want to add a language? See CONTRIBUTING.md
Contributing
Contributions welcome! Add terms, provide translations, fix errors or suggest improvements.
See CONTRIBUTING.md for details.
Development
pnpm install # Install dependencies
pnpm build # Build library
pnpm demo:dev # Run demo site (http://localhost:5173)
pnpm demo:build # Build demo siteSee CLAUDE.md for detailed development guidance.
