| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A comprehensive glossary of tech terms and concepts, designed to help newcomers and tech enthusiasts understand the most common terminology in the technology world.
TechTerms is an open-source glossary application that makes complex technical terminology accessible to everyone. Whether you're a newcomer to tech or an experienced developer, this platform helps you understand and learn the most common tech terms and concepts.
TechTerms uses privacy-first analytics to understand usage patterns. View our public analytics dashboard:
This public dashboard provides insights into how the platform is being used and can be used for advertising purposes.
TechTerms is built with a minimal, beginner-friendly tech stack:
Clone the repository
git clone https://github.com/techterms/techterms.git
cd techtermsInstall dependencies
npm installStart the development server
npm run devOpen your browser Navigate to http://localhost:4321 to see the application running locally.
Adding new tech terms is easy! Here's how:
Edit the definitions file Open src/data/definitions.ts and add your new term:
{
id: 'your-term-id',
term: 'Your Term',
explanation: 'A clear, beginner-friendly explanation of the term.',
categories: [Categories.WebDevelopment], // Choose relevant categories
related: [
'https://example.com/more-info',
'https://docs.example.com/term'
],
}Choose categories Available categories are defined in src/models/Categories.ts:
Follow the guidelines
We welcome contributions from everyone! Whether you want to:
Please read our Contributing Guide for detailed instructions on how to contribute to the project.
The application is automatically deployed to GitHub Pages when changes are merged to the main branch. The deployment process includes:
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ for the tech community
| Back | FazBrowse Home | New Git URL |