Vercel Develop. Preview. Ship. Documentation · Changelog · Templates · CLI Vercel Vercel’s AI Cloud is a unified platform for building modern applications, giving teams the tools to be flexible,…
Vercel
Develop. Preview. Ship.
Documentation ·
Changelog ·
Templates ·
CLI
Vercel
Vercel’s AI Cloud is a unified platform for building modern applications, giving teams the tools to be flexible, move fast, and stay secure while focusing on their products instead of infrastructure.
Deploy
Get started by importing a project, choosing a template, or using the Vercel CLI. Then, git push to deploy.
Native CLI binaries
The standard npm installation remains unchanged:
bash
npm i -g vercel
Native CLI binaries are distributed separately and do not affect the vercel npm package. To opt into the native binary and replace existing global vercel and vc commands, install the native package explicitly:
bash
npm i -g @vercel/vc-native --force
The --force flag allows npm to replace existing global vercel and vc bin links. Users who do not install @vercel/vc-native continue using the regular Node.js-based CLI from npm i -g vercel.
Platform-specific packages are also available for direct installation when a specific binary is needed:
bash
npm i -g @vercel/vc-native-darwin-x64 --force
Documentation
For details on how to use Vercel, check out our documentation.
Contributing
This project uses pnpm to install dependencies and run scripts.
You can use the vercel script to run local changes as if you were invoking Vercel CLI. For example, vercel deploy --cwd=/path/to/project could be run with local changes with pnpm vercel deploy --cwd=/path/to/project.
When contributing to this repository, please first discuss the change you wish to make via Vercel Community with the owners of this repository before submitting a Pull Request.
Please read our [Code of Conduct](./.github/CODE_OF_CONDUCT.md) and follow it in all your interactions with the project.
Local development
This project is configured in a monorepo, where one repository contains multiple npm packages. Dependencies are installed and managed with pnpm, not npm CLI.
To get started, execute the following:
bash
git clone https://github.com/vercel/vercel
cd vercel
corepack enable
pnpm install
pnpm build
pnpm lint
pnpm test-unit
Make sure all the tests pass before making changes.
Running Vercel CLI Changes
You can use pnpm vercel from the cli package to invoke Vercel CLI with local changes:
bash
cd ./packages/cli
pnpm vercel
See [CLI Local Development](../packages/cli#local-development) for more details.
Verifying your change
Once you are done with your changes (we even suggest doing it along the way), make sure all the tests still pass by running:
bash
pnpm test-unit
from the root of the project.
If any test fails, make sure to fix it along with your changes. See [Interpreting test errors](#Interpreting-test-errors) for more information about how the tests are executed, especially the integration tests.
Pull Request Process
Once you are confident that your changes work properly, open a pull request on the main repository.
The pull request will be reviewed by the maintainers and the tests will be checked by our continuous integration platform.
Interpreting test errors
There are 2 kinds of tests in this repository – Unit tests and Integration tests.
Unit tests are run locally with jest and execute quickly because they are testing the smallest units of code.
Integration tests
Integration tests create deployments to your Vercel account using the test project name. After each test is deployed, the probes key is used to check if the response is the expected value. If the value doesn't match, you'll see a message explaining the difference. If the deployment failed to build, you'll see a more generic message like the following:
log
[Error: Fetched page https://test-8ashcdlew.vercel.app/root.js does not contain hello Root!. Instead it contains An error occurred with this application.
NO_STATUS_CODE_FRO Response headers:
cache-control=s-maxage=0
connection=close
content-type=text/plain; charset=utf-8
date=Wed, 19 Jun 2019 18:01:37 GMT
server=now
strict-transport-security=max-age=63072000
transfer-encoding=chunked
x-now-id=iad1:hgtzj-1560967297876-44ae12559f95
x-now-trace=iad1]
In such cases, you can visit the URL of the failed deployment and append /_logs to see the build error. In the case above, that would be https://test-8ashcdlew.vercel.app/_logs
The logs of this deployment will contain the actual error which may help you to understand what went wrong.
Running integration tests locally
While running the full integration suite locally is not recommended, it's sometimes useful to isolate a failing test by running it on your machine. To do so, you'll need to ensure you have the appropriate credentials sourced in your shell:
1. Create an access token. Follow the instructions here https://vercel.com/docs/rest-api#creating-an-access-token. Ensure the token scope is for your personal
account.
2. Grab the team ID from the Vercel dashboard at https://vercel.com//~/settings.
3. Source these into your shell rc file: echo 'export VERCEL_TOKEN= VERCEL_TEAM_ID=' >> ~/.zshrc
From there, you should be able to trigger an integration test. Choose one
that's already isolated to check that things work:
bash
cd packages/next
Run the test:
bash
pnpm test test/fixtures/00-server-build/index.test.js
> [!NOTE]
> If you receive a 401 status code while fetching the deployment, you need to disable Deployment Protection on the project.
@vercel/nft
Some of the Builders use @vercel/nft to tree-shake files before deployment. If you suspect an error with this tree-shaking mechanism, you can create the following script in your project:
js
const { nodeFileTrace } = require('@vercel/nft');
nodeFileTrace(['path/to/entrypoint.js'], {
ts: true,
mixedModules: true,
})
.then(o => console.log(o.fileList))
.then(e => console.error(e));
When you run this script, you'll see all the imported files. If files are missing, the bug is in @vercel/nft and not the Builder.
Deploy a Builder with existing project
Sometimes you want to test changes to a Builder against an existing project, maybe with vercel dev or actual deployment. You can avoid publishing every Builder change to npm by uploading the Builder as a tarball.
1. Change directory to the desired Builder cd ./packages/node
2. Run pnpm build to compile typescript and other build steps
3. Run npm pack to create a tarball file. It is imporant to not use pnpm pack because it will not preserve the file permissions
4. Move the resulting tarball to a directory
5. Run vercel to upload the tarball file and get a URL. Remember to append / to then end of your URL
6. Edit any existing vercel.json project and replace use with the URL
7. Run vercel or vercel dev to deploy with the experimental Builder
Note: You will need to turn off vercel authentication in settings -> deployment protection so the builder can be downloaded
Reference
- [Code of Conduct](./.github/CODE_OF_CONDUCT.md)
- [Contributing Guidelines](./.github/CONTRIBUTING.md)
- [Apache 2.0 License](./LICENSE)
Members
-
next.js ★ PINNED
The React Framework
JavaScript ★ 140k 4h agoExplain → -
vercel ★ PINNED
Develop. Preview. Ship.
TypeScript ★ 16k 4h agoExplain → -
ai ★ PINNED
The AI Toolkit for TypeScript. From the creators of Next.js, the AI SDK is a free open-source library for building AI-powered applications and agents
TypeScript ★ 25k 4h agoExplain → -
turborepo ★ PINNED
Build system optimized for JavaScript and TypeScript, written in Rust
Rust ★ 30k 6h agoExplain → -
swr ★ PINNED
React Hooks for Data Fetching
TypeScript ★ 32k 2d agoExplain → -
commerce ★ PINNED
Next.js Commerce
TypeScript ★ 14k 3mo agoExplain → -
workflow
Workflow SDK: Build durable, reliable, and observable apps and AI Agents in TypeScript
TypeScript ★ 2.1k 4h agoExplain → -
sandbox
Vercel Sandbox is an ephemeral compute primitive designed to safely run untrusted or user-generated code.
TypeScript ★ 130 5h agoExplain → -
chat
A unified TypeScript SDK for building chat bots across Slack, Microsoft Teams, Google Chat, Discord, and more.
TypeScript ★ 2.0k 6h agoExplain → -
aws-opensearch-demo
No description.
TypeScript ★ 0 6h agoExplain → -
vercel-py
Develop. Preview. Ship. Python.
Python ★ 11 7h agoExplain → -
flags
Flags SDK by Vercel
TypeScript ★ 594 7h agoExplain → -
shop
vercel/shop
TypeScript ★ 18 7h agoExplain → -
next-forge
Production-grade Turborepo template for Next.js apps.
TypeScript ★ 7.1k 7h agoExplain → -
storage
Vercel Storage - Blob and Edge Config
TypeScript ★ 591 14h agoExplain → -
ncc
Compile a Node.js project into a single file. Supports TypeScript, binary addons, dynamic requires.
JavaScript ★ 9.8k 19h agoExplain → -
nft
Node.js dependency tracing utility
JavaScript ★ 1.6k 20h agoExplain → -
remix ⑂
Build Better Websites. Create modern, resilient user experiences with web fundamentals.
TypeScript ★ 187 1d agoExplain → -
ai-elements
AI Elements is a component library and custom registry built on top of shadcn/ui to help you build AI-native applications faster.
TypeScript ★ 2.0k 1d agoExplain → -
repository-dispatch
Utilities for working with dispatch events triggered by Vercel
TypeScript ★ 11 1d agoExplain → -
vercel-plugin
Comprehensive Vercel ecosystem plugin — relational knowledge graph, skills for every major product, specialized agents, and Vercel conventions. Turns any AI agent into a Vercel expert.
TypeScript ★ 176 2d agoExplain → -
fun
ƒun - Local serverless function λ development runtime
TypeScript ★ 994 2d agoExplain → -
python-typemap
Type Manipulation PEP
Python ★ 21 2d agoExplain → -
next-app-router-playground
A playground to explore Next.js features such as nested layouts, instant loading states, streaming, and component level data fetching.
TypeScript ★ 3.0k 2d agoExplain → -
veil
A generic configuration management CLI tool. No more templates, just transforms
Go ★ 4 2d agoExplain → -
microfrontends
Build microfrontends on Vercel
TypeScript ★ 38 2d agoExplain → -
sdk
Vercel SDK is a type-safe Typescript SDK that gives you access to the Vercel REST API.
TypeScript ★ 153 2d agoExplain → -
uid-promise
Creates a cryptographically strong UID
TypeScript ★ 261 6d agoExplain → -
satori
Enlightened library to convert HTML and CSS to SVG
TypeScript ★ 13k 6d agoExplain → -
examples
Enjoy our curated collection of examples and solutions. Use these patterns to build your own robust and scalable applications.
TypeScript ★ 5.1k 6d agoExplain → -
next-learn
Learn Next.js Starter Code
TypeScript ★ 4.7k 6d agoExplain → -
release
Generate changelogs with a single command
JavaScript ★ 3.6k 7d agoExplain → -
geist-font
No description.
HTML ★ 3.4k 7d agoExplain → -
wait-for-deployment-action
GitHub Action that waits for a Vercel deployment to be ready in CI by polling GitHub's Deployments API.
TypeScript ★ 2 7d agoExplain → -
serve
Static file serving and directory listing
TypeScript ★ 9.9k 7d agoExplain → -
streamdown
A drop-in replacement for react-markdown, designed for AI-powered streaming.
TypeScript ★ 5.2k 7d agoExplain → -
micro
Asynchronous HTTP microservices
TypeScript ★ 11k 7d agoExplain → -
styled-jsx
Full CSS support for JSX without compromises
JavaScript ★ 7.8k 7d agoExplain → -
hyper
A terminal built on web technologies
TypeScript ★ 45k 7d agoExplain → -
components.build
An open-source standard for building modern, composable and accessible UI components.
MDX ★ 769 7d agoExplain → -
otel
OTEL tracing for Vercel
TypeScript ★ 93 7d agoExplain → -
speed-insights
Vercel Speed Insights package
TypeScript ★ 104 7d agoExplain → -
analytics
Privacy-friendly, real-time traffic insights
TypeScript ★ 507 7d agoExplain → -
bridge
Develop services locally in the context of a K8s cluster
Go ★ 7 7d agoExplain → -
ms
Tiny millisecond conversion utility
TypeScript ★ 5.5k 8d agoExplain → -
example-marketplace-integration
No description.
TypeScript ★ 36 8d agoExplain → -
terraform-provider-vercel
Terraform Vercel Provider
Go ★ 186 8d agoExplain → -
models.dev ⑂
An open-source database of AI models.
TypeScript ★ 7 9d agoExplain → -
vc-runtime-lab
No description.
TypeScript ★ 1 9d agoExplain → -
chatbot
A full-featured, hackable Next.js AI chatbot built by Vercel
TypeScript ★ 20k 10d agoExplain → -
avatar
💎 Beautiful avatars as a microservice
TypeScript ★ 1.4k 12d agoExplain → -
firecracker-go-sdk ⑂
An SDK in Go for the Firecracker microVM API
Go ★ 3 15d agoExplain → -
v0-sdk
SDK for the v0 Platform API
TypeScript ★ 487 16d agoExplain → -
edge-runtime
Developing, testing, and defining the runtime Web APIs for Edge infrastructure.
TypeScript ★ 904 16d agoExplain → -
async-listen
Promisify server.listen for your HTTP/HTTPS/TCP server.
TypeScript ★ 54 16d agoExplain → -
webpack-asset-relocator-loader
Used in ncc while emitting and relocating any asset references
JavaScript ★ 107 16d agoExplain → -
vercel-marketing-toolkit
No description.
TypeScript ★ 2 20d agoExplain → -
orb_data_freshness_dashboard
No description.
TypeScript ★ 1 21d agoExplain → -
workflow-examples
Example projects and templates build using Workflow DevKit
TypeScript ★ 489 22d agoExplain → -
serve-handler
The foundation of `serve`
JavaScript ★ 617 24d agoExplain → -
vercel-azure-devops-extension
An Azure DevOps Extension for deploying to Vercel from Azure Pipelines
TypeScript ★ 38 1mo agoExplain → -
next-evals-oss
Evals for Next.js up to 15.5.6 to test AI model competency at Next.js
TypeScript ★ 262 1mo agoExplain → -
slack-tools
Slack tools for the Vercel AI SDK. Give your AI agents the ability to read, post, and interact in Slack.
TypeScript ★ 6 1mo agoExplain → -
sccache ⑂
Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.
Rust ★ 0 1mo agoExplain → -
react-tweet
Embed tweets in your React application.
TypeScript ★ 1.9k 1mo agoExplain → -
bash-video
No description.
TypeScript ★ 3 1mo agoExplain → -
server-components-notes-demo
Demo of React Server Components with Next.js. Deployed on Vercel.
TypeScript ★ 750 1mo agoExplain → -
vrs
A serverless virtual reality e-commerce experience powered by Vercel
TypeScript ★ 527 1mo agoExplain → -
oscar-mike
Oscar Mike — daily Slack bot for the Vercel veterans affinity group
TypeScript ★ 0 1mo agoExplain → -
computesdk ⑂
A free and open-source toolkit for running other people's code in your applications.
★ 0 1mo agoExplain → -
next-config-fn-repro
No description.
JavaScript ★ 1 1mo agoExplain → -
swr-site
The official website for SWR.
MDX ★ 509 1mo agoExplain → -
aws-aurora-postgresql-demo
No description.
TypeScript ★ 3 2mo agoExplain → -
vercel-extensions ⑂
Develop. Preview. Ship.
★ 0 2mo agoExplain → -
mcp-handler
Easily spin up an MCP Server on Next.js, Nuxt, Svelte, and more
TypeScript ★ 605 2mo agoExplain → -
aix
Build AI apps with the polish of ChatGPT, v0, and Grok. Coming soon.
TypeScript ★ 98 2mo agoExplain → -
next-devtools-mcp
Next.js Development for Coding Agent
TypeScript ★ 763 2mo agoExplain → -
sqs-consumer ⑂
Build Amazon Simple Queue Service (SQS) based applications without the boilerplate
TypeScript ★ 13 2mo agoExplain → -
yyy-hello-world-script-creation
No description.
JavaScript ★ 0 2mo agoExplain → -
loading-demos
Different behaviors of the loading.tsx file wrt Link prefetching
TypeScript ★ 9 2mo agoExplain → -
resumable-stream
Stream resumption for web streams
TypeScript ★ 546 2mo agoExplain → -
workflow-builder-starter
No description.
TypeScript ★ 9 2mo agoExplain → -
cosmosdb-server
A Cosmos DB server implementation for testing your applications locally.
TypeScript ★ 178 2mo agoExplain → -
grokcreativestudiotemplate
A minimal creative playground for generating images and video with Grok AI via Vercel AI Gateway
TypeScript ★ 6 2mo agoExplain → -
catalyst ⑂
Catalyst - for Composable Commerce
TypeScript ★ 10 2mo agoExplain → -
nomad ⑂
Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice, batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul and Vault integrations.
★ 2 2mo agoExplain → -
title
A service for capitalizing your title properly
JavaScript ★ 618 3mo agoExplain → -
example-marketplace-integration-billing-changes ⑂
No description.
★ 0 3mo agoExplain → -
example-marketplace-integration-custom-billing ⑂
No description.
TypeScript ★ 1 3mo agoExplain → -
registry-starter
Registry Starter is a free, open-source template built with Next.js and Shadcn/ui Registry to accelerate your AI-Native Design System.
TypeScript ★ 125 3mo agoExplain → -
geist-pixel-font
Geist Pixel Font
HTML ★ 28 4mo agoExplain → -
claim-deployments-demo
Demo to showcase how to claim a deployment using project transfer flow
TypeScript ★ 48 4mo agoExplain → -
sign-in-with-vercel-reference-app
Reference Next.js app showcasing integration with Sign in with Vercel
TypeScript ★ 2 4mo agoExplain → -
flags-sdk-workshop-starter
A starting point for the Flags SDK workshop
TypeScript ★ 3 4mo agoExplain → -
nextjs-postgres-nextauth-tailwindcss-template
Admin dashboard template.
TypeScript ★ 1.6k 4mo agoExplain → -
vercel-mcp-overview
Public overview of Vercel's MCP server for the github.com/mcp directory. Full documentation at https://vercel.com/docs/mcp/vercel-mcp
★ 8 4mo agoExplain → -
nextjs-foundations-starter
No description.
TypeScript ★ 2 4mo agoExplain → -
ai-sdk-fundamentals-starter
AI SDK Course Repository
TypeScript ★ 25 4mo agoExplain → -
academy-subscription-starter
A starter app for a Subscription Starter course on Vercel Academy
TypeScript ★ 2 5mo agoExplain → -
vercel-deploy-claude-code-plugin
No description.
★ 13 5mo agoExplain → -
aws-dynamodb-demo
No description.
TypeScript ★ 1 5mo agoExplain → -
aws-dsql-movies-demo
AWS DSQL Postgres with Next.js and Vercel
TypeScript ★ 47 5mo agoExplain → -
bidc
Bidirectional Channels for JavaScript
TypeScript ★ 1.3k 5mo agoExplain → -
acp-handler
Integrate the Agentic Commerce Protocol (ACP) into your servers
TypeScript ★ 24 5mo agoExplain → -
ship-content-driven-websites
Build a highly customizable and dynamic content-driven websites with Next.js and Sanity
TypeScript ★ 35 5mo agoExplain → -
nextjs-optimizely-experimentation
No description.
TypeScript ★ 31 5mo agoExplain → -
virtual-event-starter-kit ▣
Open source demo that Next.js developers can clone, deploy, and fully customize for events.
TypeScript ★ 2.2k 5mo agoExplain → -
next-react-server-components
Demo repository for Next.js + React Server Components
JavaScript ★ 996 5mo agoExplain → -
next-view-transition-example
No description.
TypeScript ★ 107 5mo agoExplain → -
docs-search-battle-arena
No description.
TypeScript ★ 6 5mo agoExplain → -
crux-history
No description.
TypeScript ★ 4 5mo agoExplain → -
gip-cache-prefetch
Test on how to prefetch links to getInitialProps pages.
TypeScript ★ 2 5mo agoExplain → -
app-playground-api
No description.
TypeScript ★ 10 5mo agoExplain → -
production-monorepos-starter
Student Start Files for the Production Monorepos Course
TypeScript ★ 7 5mo agoExplain → -
v0-starter-template
No description.
TypeScript ★ 3 5mo agoExplain → -
stripe-integration
A Vercel deploy integration to automatically set up your Stripe API keys and webhook secrets.
TypeScript ★ 38 5mo agoExplain → -
on-demand-isr
No description.
TypeScript ★ 899 5mo agoExplain → -
nextgram
A sample Next.js app showing dynamic routing with modals as a route.
TypeScript ★ 1.0k 5mo agoExplain → -
postgres-next-starter
Get started quickly with a Postgres database and a Next.js App Router application.
TypeScript ★ 55 5mo agoExplain → -
ios-web-payments
Zero-commission iOS app payments with Solito.
TypeScript ★ 120 5mo agoExplain → -
d0-chatbot ⑂
No description.
TypeScript ★ 17 5mo agoExplain → -
sandbox-example-next
No description.
TypeScript ★ 7 5mo agoExplain → -
nextjs-motherduck-wasm-analytics-quickstart ⑂
A Next.js data analytics example for MotherDuck Wasm
TypeScript ★ 0 5mo agoExplain → -
platforms
A full-stack Next.js app with multi-tenancy.
TypeScript ★ 6.7k 5mo agoExplain → -
little-date
A friendly formatter to make date ranges small & sweet
TypeScript ★ 2.0k 6mo agoExplain → -
nextjs-portfolio-starter
Easily create a portfolio with Next.js and Markdown.
JavaScript ★ 731 6mo agoExplain → -
ai-action
GitHub Action to interact with different AI model providers.
JavaScript ★ 78 6mo agoExplain → -
tracing-js ▣
An implementation of Opentracing API for honeycomb.io
TypeScript ★ 47 7mo agoExplain → -
nextjs-stripe-template
An example using Stripe in Next.js
TypeScript ★ 19 7mo agoExplain → -
v0-language-model-chat-provider
No description.
TypeScript ★ 17 8mo agoExplain → -
v0-platform-api-demo ▣
A Next.js application demonstrating the v0 Platform API
★ 95 8mo agoExplain → -
cosmosdb-query
A SQL parser and executor for Cosmos DB
TypeScript ★ 21 8mo agoExplain → -
ai-sdk-rag-starter
No description.
TypeScript ★ 267 10mo agoExplain → -
firewall-templates
No description.
JavaScript ★ 24 10mo agoExplain → -
example-integration
No description.
TypeScript ★ 51 10mo agoExplain → -
.github
No description.
★ 11 11mo agoExplain → -
react-transition-progress
Show a progress bar while React Transitions run
TypeScript ★ 330 11mo agoExplain → -
ai-chatbot-svelte
A full-featured, hackable SvelteKit AI chatbot built by Vercel
Svelte ★ 436 11mo agoExplain → -
hyper-site
The official website for the Hyper terminal
JavaScript ★ 465 1y agoExplain → -
static-fun ▣
A fun demo for wildcard domains
TypeScript ★ 645 1y agoExplain → -
remote-cache
The Vercel Remote Cache SDK
TypeScript ★ 191 1y agoExplain → -
kirimase
Build full-stack Next.js apps, incredibly fast
TypeScript ★ 2.8k 1y agoExplain → -
shirt-shop
An example repository showing how to use @vercel/flags with Next.js.
★ 34 1y agoExplain → -
nudge
A tool for encouraging the installation of macOS security updates.
Shell ★ 15 1y agoExplain → -
sveltekit-commerce
SvelteKit Commerce
Svelte ★ 442 1y agoExplain → -
style-guide ▣
Vercel's engineering style guide
JavaScript ★ 1.3k 1y agoExplain → -
nextjs-subscription-payments ▣
Clone, deploy, and fully customize a SaaS subscription application with Next.js.
TypeScript ★ 7.7k 1y agoExplain → -
schemas
All schemas used for validation that are shared between our projects
JavaScript ★ 89 1y agoExplain → -
title-site
A website for capitalizing your titles
JavaScript ★ 139 1y agoExplain → -
community ▣
Welcome to the Vercel Community. Discuss feature requests, ask questions, and connect with others in the community.
★ 116 1y agoExplain → -
modelfusion
The TypeScript library for building AI applications.
TypeScript ★ 1.3k 1y agoExplain → -
arg
Simple argument parsing
JavaScript ★ 1.3k 1y agoExplain → -
mongodb-starter
A developer directory built on Next.js and MongoDB Atlas, deployed on Vercel with the Vercel + MongoDB integration.
TypeScript ★ 512 1y agoExplain → -
nuxt3-kitchen-sink
An example template showing all Nuxt 3 features on Vercel.
Vue ★ 74 1y agoExplain → -
nextjs-postgres-auth-starter
Next.js + Tailwind + Typescript + Drizzle + NextAuth + PostgreSQL starter template.
TypeScript ★ 1.1k 1y agoExplain → -
update-check
Minimalistic update notifications for command line interfaces
JavaScript ★ 169 1y agoExplain → -
hazel
Lightweight update server for Electron apps
JavaScript ★ 3.0k 1y agoExplain → -
micro-dev
The development environment for `micro`
JavaScript ★ 711 1y agoExplain → -
hono-nextjs
No description.
TypeScript ★ 63 2y agoExplain → -
err-sh
Microservice that forwards you to error messages
JavaScript ★ 102 2y agoExplain → -
reactions
Next.js Incremental Static Regeneration Demo
JavaScript ★ 314 2y agoExplain → -
async-sema
Semaphore using `async` and `await`
TypeScript ★ 657 2y agoExplain → -
ai-review-summary
No description.
TypeScript ★ 50 2y agoExplain → -
domain-architecture-monorepo
A monorepo using a domain-oriented architecture.
TypeScript ★ 22 2y agoExplain → -
example-figma-og-image
An example of a Next.js App using FigmaImageResponse
TypeScript ★ 12 2y agoExplain → -
pkg-fetch ▣
A utility to fetch or build patched Node binaries used by `pkg` to generate executables. This repo hosts prebuilt binaries in Releases.
TypeScript ★ 461 2y agoExplain → -
pkg ▣
Package your Node.js project into an executable
JavaScript ★ 24k 2y agoExplain → -
fetch ▣
Opinionated `fetch` (with retrying and DNS caching) optimized for use with Node.js
JavaScript ★ 574 2y agoExplain → -
opentelemetry-collector-dev-setup
No description.
Shell ★ 161 2y agoExplain → -
preview-mode-demo
This demo showcases Next.js' next-gen Static Site Generation (SSG) support.
TypeScript ★ 125 2y agoExplain → -
install-node
Simple one-liner shell script that installs official Node.js binaries
Shell ★ 145 2y agoExplain → -
spr-landing
Serverless Pre-Rendering Landing Page
CSS ★ 451 2y agoExplain → -
test-listen
Quick ephemeral URLs for your tests
JavaScript ★ 158 2y agoExplain → -
async-retry
Retrying made simple, easy and async
JavaScript ★ 1.9k 2y agoExplain → -
react-keyframes
Create frame-based animations in React
TypeScript ★ 628 2y agoExplain → -
resolve-node
API endpoint to resolve an arbitrary Node.js version with semver support
JavaScript ★ 34 2y agoExplain → -
dns-cached-resolve
Caching DNS resolver
TypeScript ★ 51 2y agoExplain → -
body-scroll-lock ⑂
Body scroll locking that just works with everything 😏
JavaScript ★ 49 3y agoExplain → -
nextjs-discord-bot
Discord bot for the official Next.js Discord
TypeScript ★ 120 3y agoExplain → -
email-prompt
CLI email prompt with autocompletion and built-in validation
JavaScript ★ 279 3y agoExplain → -
hyperpower
Hyper particle effects extension
JavaScript ★ 638 3y agoExplain → -
og-image ▣
Open Graph Image as a Service - generate cards for Twitter, Facebook, Slack, etc
TypeScript ★ 4.1k 3y agoExplain → -
gatsby-plugin-vercel ▣
Track Core Web Vitals in Gatsby projects with Vercel Analytics.
JavaScript ★ 25 3y agoExplain → -
cert-demo
No description.
TypeScript ★ 21 3y agoExplain → -
beginner-sveltekit ▣
The complete course to start your journey building Svelte applications.
JavaScript ★ 107 3y agoExplain → -
go-bridge
Bridge for `@vercel/go`
Go ★ 28 3y agoExplain → -
terraform-provider-preset
A Terraform Provider for Preset/Superset (Beta)
Go ★ 8 3y agoExplain → -
commerce-framework ▣
No description.
TypeScript ★ 100 4y agoExplain → -
workshop-reacthaton
No description.
TypeScript ★ 10 4y agoExplain → -
release-auth
Handles the authentication for `release`
JavaScript ★ 27 4y agoExplain → -
fetch-retry ▣
Wrapper around `fetch` with sensible retrying defaults
JavaScript ★ 225 4y agoExplain → -
fetch-cached-dns ▣
A decorator on top of `fetch` that caches the DNS query
JavaScript ★ 41 4y agoExplain → -
next-plugins ▣
Official Next.js plugins
★ 2.7k 4y agoExplain → -
git-hooks
No nonsense Git hook management
JavaScript ★ 203 5y agoExplain → -
remark-capitalize
Transform all markdown titles with title.sh
JavaScript ★ 31 5y agoExplain → -
zsh-theme
Yet another zsh theme
★ 195 5y agoExplain → -
next-codemod ▣
codemod transformations to help upgrade Next.js codebases
JavaScript ★ 69 5y agoExplain → -
response ⑂
Monzo's real-time incident response and reporting tool ⚡️
JavaScript ★ 11 6y agoExplain → -
hyperyellow
Example theme for hyperterm
JavaScript ★ 96 7y agoExplain → -
wait-for
Small utility that waits for a file to exist and optionally have some permissions set.
C ★ 51 7y agoExplain →
No repos match these filters.