GitHub Trending Leaderboard for Developers
Scans GitHub daily, sorted into AI Agent, MCP Server, DevTools & Automation. Every tool ships with a deploy command — copy and run.
AI MARKET TERMINAL
AI stocks, trending tools, news & model rankings — aggregated live from npmrundeploy.com's real data.
Stock data comes from a public source (Yahoo Finance) and may lag 15-20 minutes behind the real market — this is NOT investment advice. Trending tool data comes directly from the GitHub API. Model rankings are manually curated by the npmrundeploy.com team. Please verify the original source before quoting or resharing any figures.
Tool leaderboard
Loading data...Updates in the last 7 days
Aggregated from GitHub Trending and translated technical blogs on this site.
See all updates →Trend Index
Aggregated stats from GitHub data
Frequently Asked Questions
Quick answers on using the leaderboard and picking the right tool
ℹ️ What is npmrundeploy.com for?
This is a daily roundup of GitHub trending built for developers, PMs, and builders who want to deploy new AI tools fast — without reading every README. Each tool is tagged with a category and a ready-to-run npm/npx/pip/docker command.
🔎 Quickly find a tool for your need
AI Agent · 7 tools
Claude Code
An agentic command-line coding tool that runs Claude directly in your terminal to read/edit code and run commands.
npm install -g @anthropic-ai/claude-code
CrewAI
A lightweight framework for building teams of role-based AI agents that collaborate, independent of LangChain.
pip install crewai
Dify
A full-stack platform for building production-ready AI agent/LLM apps with a drag-and-drop UI.
git clone https://github.com/langgenius/dify.git && cd dify/docker && docker compose up -d
Aider
A terminal-based AI pair programmer that edits code directly in your git repo, supporting most popular languages.
pip install aider-chat
Open Interpreter
Lets LLMs execute code (Python, JS, Shell...) locally through a ChatGPT-like chat interface.
pip install open-interpreter
MetaGPT
A multi-agent framework that simulates a software company — give one requirement and PM/Architect/Engineer roles collaborate to build it.
pip install metagpt
browser-use
Gives AI agents control of a real browser (click, type, fill forms) to automate complex web tasks.
pip install browser-use
AI / Machine Learning · 7 tools
Ollama
Run open-source LLMs (Llama, Qwen, DeepSeek...) locally on your own machine, no cloud GPU needed.
curl -fsSL https://ollama.com/install.sh | sh
LangChain
The foundational framework for connecting LLMs to data, tools, and agents — the largest ecosystem today.
pip install langchain
Open WebUI
A self-hosted, ChatGPT-style web UI that works with Ollama or any OpenAI-compatible API.
docker run -d -p 3000:8080 ghcr.io/open-webui/open-webui:main
Transformers
Hugging Face's library for downloading and running tens of thousands of pretrained AI models (NLP, vision, audio).
pip install transformers
vLLM
A high-throughput LLM inference engine optimized for self-hosting models at production scale.
pip install vllm
LlamaIndex
A framework for connecting LLMs to your own data (RAG) — index documents, PDFs, and databases so LLMs answer from real data.
pip install llama-index
Whisper
OpenAI's open-source multilingual speech-to-text model, runs fully offline.
pip install openai-whisper
MCP Server · 4 tools
MCP Servers (uvicorn + FastAPI starter)
A quick-start scaffold for building MCP servers that connect AI to external data (files, DBs, internal APIs).
uvx create-mcp-server
MCP Inspector
A visual debugging tool for MCP servers — inspect tools, resources, and prompts before wiring into Claude.
npx @modelcontextprotocol/inspector
FastMCP
The fastest way to build MCP servers/clients in Python — just a few decorators and you're done.
pip install fastmcp
mcp-remote
A bridge that lets stdio-only MCP clients (like Claude Desktop) call remote MCP servers over HTTP.
npx mcp-remote
Automation · 6 tools
n8n
A workflow automation platform, a self-hostable Zapier alternative that connects with AI agents/MCP.
npx n8n
Playwright
Cross-browser automation and end-to-end testing, with the ability to record actions into a script.
npm init playwright@latest
Puppeteer
A Node library for controlling Chrome/Chromium via the DevTools Protocol — screenshots, scraping, automated testing.
npm install puppeteer
Apache Airflow
The classic DAG-based workflow orchestration platform for data pipelines — schedule and monitor complex tasks.
pip install apache-airflow
Prefect
A modern, code-first Python workflow orchestration framework — an Airflow alternative with far simpler syntax.
pip install prefect
Selenium
The oldest and most widely used browser automation toolkit, supporting nearly every language and browser.
pip install selenium
Dev Tools · 6 tools
Vite
A next-generation build tool/dev server that starts frontend projects almost instantly.
npm create vite@latest
Turborepo
Vercel's high-performance monorepo build tool with smart caching that rebuilds/retests only what changed.
npx create-turbo@latest
esbuild
A JavaScript bundler/minifier written in Go, tens to hundreds of times faster than webpack.
npm install esbuild
ripgrep
An extremely fast text-search tool for codebases that respects .gitignore by default — a modern grep replacement.
cargo install ripgrep
lazygit
A visual terminal UI for Git — stage, commit, rebase, and view diffs with just a few keystrokes.
go install github.com/jesseduffield/lazygit@latest
act
Run GitHub Actions locally using Docker — no need to push code just to find out a workflow is broken.
curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
Web Framework · 6 tools
create-next-app
Scaffold a Next.js project with one command — the most popular React framework for production web apps.
npx create-next-app@latest
Astro
A blazing-fast static site framework shipping almost zero JS by default — the technology behind this very site.
npm create astro@latest
Nuxt
A full-stack Vue framework with built-in SSR — the second-largest module ecosystem after Next.js.
npx nuxi@latest init
SvelteKit
Svelte's official framework — compiles components to plain JS, with almost no virtual DOM overhead.
npx sv create .
Remix
A React framework focused on web fundamentals (forms, nested routes), now merged into React Router.
npx create-remix@latest
Vue.js (create-vue)
The official scaffolding tool for Vue 3 projects with Vite, TypeScript, router, etc. via a short interactive setup.
npm create vue@latest
CLI Tool · 4 tools
Oh My Zsh
A Zsh configuration framework with hundreds of ready-made themes/plugins — a much nicer terminal than the default.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
bat
A `cat` replacement with syntax highlighting, line numbers, and built-in git diff integration.
cargo install bat
fzf
A command-line fuzzy finder — quickly search files, command history, or processes by typing just a few characters.
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/install
GitHub CLI
Manage GitHub (PRs, issues, releases) right from the terminal, no browser needed.
brew install gh
Database · 5 tools
Supabase CLI
Bootstrap Postgres + Auth + Storage, self-hosted or cloud — an open-source Firebase alternative.
npx supabase init
Redis
An in-memory key-value database used for caching, queues, and session storage — extremely fast.
docker run -d -p 6379:6379 redis
MongoDB
The most popular document-oriented NoSQL database, with a flexible schema suited to rapid development.
docker run -d -p 27017:27017 mongo
Directus
A headless CMS/API layer auto-generated from any SQL database, with a polished built-in admin UI.
npx directus init
Appwrite
A self-hosted backend-as-a-service: Auth, Database, Storage, Functions — an open-source Firebase alternative.
docker run -it --rm --volume /var/run/docker.sock:/var/run/docker.sock --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw --entrypoint=install appwrite/appwrite:1.9.5
Security · 4 tools
Trivy
An all-in-one security scanner: container vulnerabilities, IaC misconfigurations, leaked secrets, licenses — one command scans everything.
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin
Semgrep
A static analysis (SAST) tool that finds vulnerabilities and anti-patterns in code, with thousands of ready-made rules.
pip install semgrep
Nuclei
A vulnerability scanner driven by YAML templates, continuously updated by the community for the latest CVEs.
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest
Gitleaks
Scans git history for accidentally committed secrets/API keys — run this before pushing to a public repo.
docker run -v $(pwd):/repo zricethezav/gitleaks:latest detect -s /repo
Mobile · 3 tools
Expo
The fastest way to build React Native apps — build and preview on your phone via QR code, no Xcode/Android Studio needed upfront.
npx create-expo-app@latest
React Native CLI
Scaffolds a plain React Native project (no Expo layer), with full access to native iOS/Android code.
npx @react-native-community/cli@latest init MyApp
Flutter
Google's SDK for building mobile/web/desktop apps from a single Dart codebase, with near-native performance.
git clone https://github.com/flutter/flutter.git -b stable
Game / Graphics · 3 tools
Three.js
The most popular WebGL 3D graphics library for JavaScript — the foundation behind countless web demos, games, and 3D products.
npm install three
Babylon.js
An open-source web-based 3D game engine with built-in WebGPU, physics, and XR support.
npm install babylonjs
Godot Engine
A full-featured open-source game engine (2D+3D), lightweight, royalty-free, with its own easy-to-learn scripting language.
brew install --cask godot