v1.0.3 — Now 100+ technologies

Reusable Tech Stack Metadata

A comprehensive, categorized metadata structure for tech stacks with React Icons integration — the perfect foundation for developer portfolios, dashboards, and project showcases.

Tech Stack Showcase
TypeScript
JavaScript
Python
Java
C
C++
PHP
HTML
TypeScript
JavaScript
Python
Java
C
C++
PHP
HTML
CSS
Bash Scripting
Go
Rust
Kotlin
Swift
Ruby
React
React Native
Next.js

100+

Technologies

9

Categories

100%

TypeScript

1KB

Tree-shakable

FEATURES

Everything You Need for Tech Stack Showcasing

A comprehensive, well-organized collection of technology metadata designed for modern web applications

Categorized Metadata

Well-organized technology metadata grouped by categories including frontend, backend, databases, languages, and more.

Extensive Collection

Over 200 popular technologies, frameworks, and tools pre-configured and ready to use in your projects.

React Icons Integration

Each technology comes pre-mapped with the appropriate icon from react-icons for perfect visual representation.

TypeScript Support

Fully typed with TypeScript for better development experience, autocompletion, and type safety.

Tree-Shakable Imports

Import only what you need with tree-shaking support to keep your bundle size small and efficient.

Extensible Structure

Simple structure that allows for easy customization and extension with your own custom tech entries.

Maintained & Updated

Regularly updated to include new technologies and maintain compatibility with the latest frameworks.

Ready-to-Use Components

Example components and patterns for displaying tech stacks in your applications with minimal effort.

Universal Compatibility

Works with any React-based project including Next.js, Remix, Gatsby, and vanilla React applications.

CATEGORIES

Explore Technology Categories

Browse our comprehensive collection of technologies organized by category

TypeScript

language

TS, JavaScript with Types

JavaScript

language

JS, ECMAScript

Python

language

py

Java

language

C

language

C Language, C Programming

C++

language

C Plus Plus

PHP

language

PHP Hypertext Preprocessor

HTML

language

HTML5, Markup Language

CSS

language

CSS3, Stylesheets

Bash Scripting

language

Shell Scripting, Terminal Scripts

Go

language

Golang, Go Language

Rust

language

Systems Programming, Memory Safety

Kotlin

language

Android Development, JVM Language

Swift

language

iOS Development, Apple Development

Ruby

language

Rails Language, Dynamic Programming

GraphQL

language

GQL, API Query Language

React

framework

React.js, ReactJS

React Native

framework

RN, Mobile Development

Next.js

framework

NextJS, Next, React Framework

Vue.js

framework

Vue, Progressive JavaScript Framework

Angular

framework

Angular Framework, TypeScript Framework

Svelte

framework

Svelte Framework, Compiler-based Framework

Remix

framework

Remix Framework, React Router Framework

Express.js

framework

Express, Node.js Framework

NestJS

framework

Nest, Node.js Framework

Flask

framework

Python Framework

FastAPI

framework

Fast API, Python API Framework

Django

framework

Django Framework, Python Web Framework

Spring Boot

framework

Spring, Java Framework

Laravel

framework

PHP Framework, Web Application Framework

Tailwind CSS

library

Tailwind, TailwindCSS, Utility CSS

Bootstrap

library

BS, Twitter Bootstrap

jQuery

library

JS Library

Three.js

library

3D Graphics, WebGL

GSAP

library

GreenSock, Animation Platform

shadcn/ui

library

Shadcn UI, UI Components

Chakra UI

library

Chakra, Component Library

Framer Motion

library

Motion Library, Animation Framework

tRPC

library

TypeScript RPC, API Framework

Prisma

library

ORM, Database Toolkit

Vite

tool

Vite.js, Build Tool

Hasura

tool

GraphQL Engine, API Platform

Swagger

tool

OpenAPI, API Documentation

Postman

tool

API Testing, API Development

Kubernetes

tool

K8s, Container Orchestration

Terraform

tool

Infrastructure as Code, IaC

Jenkins

tool

CI/CD, Continuous Integration

GitLab CI

tool

GitLab CI/CD, Continuous Integration

GitHub Actions

tool

CI/CD, Workflow Automation

Ansible

tool

Configuration Management, Infrastructure Automation

Android Studio

tool

Android IDE, Mobile Development

Vagrant

tool

Virtual Machine Management

WebStorm

tool

IDE, JavaScript IDE

Insomnia

tool

API Client, API Testing

Visual Studio Code

tool

VSCode, Code Editor

Notion

tool

Productivity, Note-taking

Slack

tool

Team Communication, Collaboration

IntelliJ IDEA

tool

Java IDE, JetBrains IDE

PyCharm

tool

Python IDE, JetBrains IDE

Adobe XD

tool

XD, UI/UX Design Tool

Figma

tool

UI Design Tool, Collaborative Design

Jira

tool

Project Management, Issue Tracking

Vercel

tool

Deployment Platform, Serverless Hosting

MongoDB

database

Mongo, NoSQL Database

PostgreSQL

database

Postgres, SQL Database

MySQL

database

SQL Database

MariaDB

database

MySQL Fork, SQL Database

Redis

database

In-Memory Database, Cache

Airtable

database

Spreadsheet Database

SQLite

database

Embedded Database, Local SQL Database

Elasticsearch

database

ELK Stack, Search Engine Database

Cassandra

database

Apache Cassandra, NoSQL Database, Distributed Database

Neo4j

database

Graph Database, Graph Database Management System

DynamoDB

database

AWS DynamoDB, NoSQL Database Service

Supabase

database

Open Source Firebase Alternative, BaaS

Firebase

database

Google Firebase, BaaS, Cloud Services

Node.js

platform

NodeJS, Node, JavaScript Runtime

Kali Linux

platform

Penetration Testing OS

Ubuntu

platform

Linux Distribution, Operating System

Nmap

security

Network Mapper, Port Scanner

Metasploit

security

Penetration Testing, Exploit Framework

Wireshark

security

Packet Analyzer, Network Protocol Analyzer

Aircrack-ng

security

WiFi Security, Wireless Cracking

Burp Suite

security

Web Security Testing, Web Application Scanner

OWASP Top 10

security

Web Security Risks, OWASP

OpenSSL

security

Cryptography, SSL/TLS

Snort

security

Network Intrusion Detection, IDS

Blender

design

3D Modeling, Animation, Rendering

Unreal Engine

design

UE, Game Engine, Real-time 3D

Git

devops

Version Control, VCS

Docker

devops

Containers, Containerization

Clerk

auth

Authentication, User Management

NextAuth.js

auth

NextAuth, Authentication for Next.js

Auth0

auth

Authentication Platform, Identity Management

Passport.js

auth

Node.js Authentication, Authentication Middleware

Keycloak

auth

Open Source IAM, Identity and Access Management

OAuth 2.0

auth

Authorization Framework, Authentication Protocol

GETTING STARTED

Quick Start Guide

Get up and running in minutes with our simple installation and usage guide

Installation
Install the package using your preferred package manager
npm install @exlaso/tech-stack-metadata
pnpm add @exlaso/tech-stack-metadata
yarn add @exlaso/tech-stack-metadata
EXAMPLES

Display Tech Stacks in Your Projects

Create beautiful tech stack displays for your portfolio, resume, or project documentation

Component Example

Create reusable components to display tech stacks in your applications.

import React from "react";
import { frontend, backend, databases } from "@exlaso/tech-stack-metadata";

export function ProjectTechStack({ projectId }) {
  // Example project tech stacks
  const projects = {
    portfolio: ["REACT_JS", "NEXT_JS", "TAILWIND_CSS", "TYPESCRIPT"],
    dashboard: ["NODE_JS", "MONGODB"],
    // ...more projects
  };
  
  // Get tech keys for the project
  const techKeys = projects[projectId] || [];
  
  // Get full tech metadata for each key
  const techStack = techKeys.map(key => {
    // Search in each category
    return getTechMetaData(key)
  }).filter(Boolean);
  
  return (
    <div className="flex flex-wrap gap-2">
      {techStack.map(tech => (
        <div key={tech.key} className="flex items-center gap-2 p-2 bg-gray-100 rounded">
          <tech.icon size={20} />
          <span>{tech.name}</span>
        </div>
      ))}
    </div>
  );
}

Visual Example

Example of how tech stacks appear in your portfolio or documentation.

Project: Personal Portfolio
A showcase of my work and skills

BUILT WITH

React
Next.js
Tailwind CSS
TypeScript
Framer Motion

DEPLOYED ON

Vercel
FAQ

Frequently Asked Questions

Common questions about using tech stack metadata in your projects

READY TO USE

Start Building Beautiful Tech Showcases Today

Join hundreds of developers who use our tech stack metadata for their portfolios, documentation sites, and project showcases.

...

GitHub Stars

...

Weekly Downloads

...

Contributors

...

Happy Developers