GitHub - devtoolsd/devtoolsd: Developers wiki!
DevTools Directory
A curated, open-source knowledge base for developers — tools, languages, frameworks, stacks, books, courses, and learning paths. No database, no login, no backend. Just Markdown files and GitHub PRs.
Site: devtools.directory · Theme: One Dark Pro · Generator: Hugo
How it works
All content lives as .md files with YAML frontmatter in this repository. Hugo builds the site at every push to main and deploys it to GitHub Pages automatically.
content/
tools/ → /tools/{slug}/
languages/ → /languages/{slug}/
frameworks/ → /frameworks/{slug}/
stacks/ → /stacks/{slug}/
paths/ → /paths/{slug}/
books/ → /books/{slug}/
courses/ → /courses/{slug}/
resources/ → /resources/{slug}/
Every content type is defined by a schema in data/abstracts/. Fields are typed, required fields are documented, and inheritance is supported (framework extends tool, etc).
Run locally
Requires Hugo (extended).
brew install hugo # macOS hugo server # → http://localhost:1313/
Add content
- Fork the repo
- Create a file in the right
content/directory - Fill in the YAML frontmatter
- Open a PR titled
add: Name
Full field schemas and examples: CONTRIBUTING.md
Content types
| Type | Directory | Extends |
|---|---|---|
| Tool | content/tools/ |
base |
| Language | content/languages/ |
tool |
| Framework | content/frameworks/ |
tool |
| Stack | content/stacks/ |
base (list) |
| Path | content/paths/ |
base (list) |
| Book | content/books/ |
base |
| Course | content/courses/ |
base |
| Resource | content/resources/ |
base |
| Tag | content/tags/ |
base |
Architecture
- Static site — Hugo generates HTML at build time, served from GitHub Pages
- No server — filtering and search run entirely in the browser via JS +
data-*attributes - JSON index — Hugo outputs
/index.jsonat build time for cross-section queries - Schema system —
data/abstracts/*.yamldefines field types, required fields, and inheritance - Validation — missing required fields emit warnings in dev mode
Deploy
Push to main. GitHub Actions runs Hugo and deploys to GitHub Pages automatically.
License
MIT