Vercel

Open-source projects categorized as Vercel

Top 23 Vercel Open-Source Projects

  • Next.js

    The React Framework

  • Project mention: How to Dockerize a Nextjs Application Using Docker | dev.to | 2024-05-27

    Next.js is a powerful React framework, that is widely used for building server-side rendered (SSR) or static web applications. Dockerizing a Next.js application can streamline the deployment process and ensure consistency between development, testing, and production environments

  • ChatGPT-Next-Web

    A cross-platform ChatGPT/Gemini UI (Web / PWA / Linux / Win / MacOS). 一键拥有你自己的跨平台 ChatGPT/Gemini 应用。

  • Project mention: Tips from open-source: Set a maximum time limit on fetch using Promise.race() | dev.to | 2024-05-07

    // source: https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web/blob/3513c6801e0fd771ccb5784dcaefcac6d50245e4/scripts/fetch-prompts.mjs#L26 async function main() { Promise.all(\[fetchCN(), fetchEN()\]) .then((\[cn, en\]) => { fs.writeFile(FILE, JSON.stringify({ cn, en })); }) .catch((e) => { console.error("\[Fetch\] failed to fetch prompts"); fs.writeFile(FILE, JSON.stringify({ cn: \[\], en: \[\] })); }) .finally(() => { console.log("\[Fetch\] saved to " + FILE); }); } main();

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • Lobe Chat

    LobeChat is a open-source, extensible (Function Calling), high-performance chatbot framework.It supports one-click free deployment of your private ChatGPT/LLM web application.

  • Project mention: The AI Revolution Is Crushing Thousands of Languages | news.ycombinator.com | 2024-04-25

    Get your OpenAI API key and then use it on one of the hundreds of open source frontends available, such as: https://github.com/lobehub/lobe-chat

  • SWR

    React Hooks for Data Fetching

  • Project mention: Think Twice Before Using setInterval() for API Polling – It Might Not Be Ideal | dev.to | 2024-05-19

    Data fetching is a very simple task until it becomes complicated. Therefore I recommend that you use powerful data fetching libraries like TanStack Query, SWR, RTK Query.

  • taxonomy

    An open source application built using the new router, server components and everything new in Next.js 13.

  • Project mention: T3 stack with app router and supabase | dev.to | 2024-01-05

    I am building this app with inspiration from Taxonomy and Acme corp so a lot of the design comes from there.

  • dub

    Open-source link management infrastructure.

  • Project mention: Short Links with Superpowers | news.ycombinator.com | 2024-05-01
  • vercel

    Develop. Preview. Ship.

  • Project mention: Next.js starter template | dev.to | 2024-05-28

    Easily deploy your Next.js app with Vercel by clicking the button below:

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • Micro

    Asynchronous HTTP microservices (by vercel)

  • satori

    Enlightened library to convert HTML and CSS to SVG

  • Project mention: Creating an OG image using React and Netlify Edge Functions | dev.to | 2024-04-16

    View on GitHub

  • usehooks

    A collection of modern, server-safe React hooks – from the ui.dev team

  • Project mention: Best Next.js Libraries and Tools in 2024 | dev.to | 2024-04-10

    Link: https://usehooks.com/

  • ai

    Build AI-powered applications with React, Svelte, Vue, and Solid

  • Project mention: Building a Retrieval-Augmented Generation Chatbot with SvelteKit and Xata Vector Search | dev.to | 2024-05-15

    import { experimental_buildLlama2Prompt } from 'ai/prompts'; // Now use Replicate LLAMA 70B streaming to perform the autocompletion with context const response = await replicate.predictions.create({ // You must enable streaming. stream: true, // The model must support streaming. See https://replicate.com/docs/streaming model: 'meta/llama-2-70b-chat', // Format the message list into the format expected by Llama 2 // @see https://github.com/vercel/ai/blob/99cf16edf0a09405d15d3867f997c96a8da869c6/packages/core/prompts/huggingface.ts#L53C1-L78C2 input: { prompt: experimental_buildLlama2Prompt([ { // create a system content message to be added as // the llama2prompt generator will supply it as the context with the API role: 'system', content: systemContext }, { // create a system instruction // make sure to wrap code blocks with ``` {% endraw %} so that the svelte markdown picks it up correctly role: 'assistant', content: {% raw %}`When creating repsonses sure to wrap any code blocks that you output as code blocks and not text so that they can be rendered beautifully.`{% endraw %} }, // also, pass the whole conversation! ...messages ]) } }); {% raw %}

  • leerob.io

    ✨ My portfolio built with Next.js, Tailwind, and Vercel.

  • Project mention: How I fixed this Next.js error: Refused to load the script because it violate Content Security Policy directive | dev.to | 2024-05-16

    Recently, I migrated my portfolio website: ramunarasinga.com to Next.js using leerob.io template and wanted to integrate Microsoft clarity with Next.js.

  • next-enterprise

    💼 An enterprise-grade Next.js boilerplate for high-performance, maintainable apps. Packed with features like Tailwind CSS, TypeScript, ESLint, Prettier, testing tools, and more to accelerate your development.

  • nextjs-subscription-payments

    Clone, deploy, and fully customize a SaaS subscription application with Next.js.

  • Project mention: Show HN: Build your startup or side project faster with these SaaS templates | news.ycombinator.com | 2024-01-01

    I use this as a subscription Stripe starter: https://github.com/vercel/nextjs-subscription-payments/tree/...

    Still quite a bit of customisation to do, but was a good starter.

  • platforms

    A full-stack Next.js app with multi-tenancy and custom domain support. Built with Next.js App Router and the Vercel Domains API.

  • Project mention: Problem with SubDomains (Multitenancy) | /r/nextjs | 2023-09-15

    I am trying to add subdomains to my project where I am trying to have [slug].domainname.com and then also just the regular dominname.com, I structured my code app router to be app, then api, [subdomain], and home. then i created middleware based on the platforms template code https://github.com/vercel/platforms/tree/main Heres the middleware: import { NextRequest, NextResponse } from "next/server"; export const config = { matcher: [ /* * Match all paths except for: * 1. /api routes * 2. /_next (Next.js internals) * 3. /_static (inside /public) * 4. all root files inside /public (e.g. /favicon.ico) */ "/((?!api/|_next/|_static/|_vercel|[\\w-]+\\.\\w+).*)", ], }; export default function middleware(req) { const url = req.nextUrl;

  • ai-chatbot

    A full-featured, hackable Next.js AI chatbot built by Vercel

  • Project mention: Wow! How to easily introduce GlobalState with AppRouter (RSC) and share the state across SC, CC, and ServerActions. | dev.to | 2024-02-03
  • LiveTerm

    💻 Build terminal styled websites in minutes!

  • Project mention: LiveTerm – Build terminal styled websites in minutes | news.ycombinator.com | 2023-10-27
  • precedent

    An opinionated collection of components, hooks, and utilities for your Next.js project.

  • Grant

    OAuth Proxy

  • Project mention: Most stable and easy to implement Auth with SvelteKit? | /r/sveltejs | 2023-12-05
  • notion-blog

    A Next.js site using new SSG support with a Notion backed blog

  • Project mention: A Next.js site using new SSG support with a Notion backed blog | news.ycombinator.com | 2023-07-27
  • release

    Release is a command line tool to automatically generate a new GitHub Release and populates it with the changes (commits) made since the last release. (by vercel)

  • examples

    Enjoy our curated collection of examples and solutions. Use these patterns to build your own robust and scalable applications. (by vercel)

  • Project mention: Direct Postgres connection to Supabase from Vercel Edge in Next.js | /r/nextjs | 2023-12-07

    Is anyone aware of a way to make a direct connection to Postgres with transaction support on Vercel Edge functions? The 'pg' package doesn't work on edge for me. The obvious answer would be @vercel/postgres but I find their lack of documentation rough and for whatever reason I can't get it to connect on my local computer using the Supabase-provided local database connection string. This is apparently a known issue (https://github.com/vercel/storage/issues/123, https://github.com/vercel/examples/issues/701) where in order to make this (or neon's package) work you need a WebSocket proxy? Is a direct Postgres connection from edge just impossible right now? Or do others have it working somehow?

  • running_page

    Make your own running home page

  • Project mention: Ask HN: Comment here about whatever you're passionate about at the moment | news.ycombinator.com | 2023-11-06

    A resource recently shared in HN for running tech lovers https://github.com/yihong0618/running_page

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Vercel related posts

  • Next.js starter template

    1 project | dev.to | 28 May 2024
  • How I fixed this Next.js error: Refused to load the script because it violate Content Security Policy directive

    2 projects | dev.to | 16 May 2024
  • Building a Retrieval-Augmented Generation Chatbot with SvelteKit and Xata Vector Search

    5 projects | dev.to | 15 May 2024
  • Tips from open-source: Set a maximum time limit on fetch using Promise.race()

    2 projects | dev.to | 7 May 2024
  • Short Links with Superpowers

    1 project | news.ycombinator.com | 1 May 2024
  • Vite vs Nextjs: Which one is right for you?

    3 projects | dev.to | 29 Apr 2024
  • Next.js starter template

    1 project | dev.to | 24 Apr 2024
  • A note from our sponsor - SaaSHub
    www.saashub.com | 2 Jun 2024
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

What are some of the best open-source Vercel projects? This list will help you:

Project Stars
1 Next.js 121,749
2 ChatGPT-Next-Web 70,868
3 Lobe Chat 31,722
4 SWR 29,686
5 taxonomy 17,765
6 dub 16,504
7 vercel 12,287
8 Micro 10,534
9 satori 10,252
10 usehooks 8,693
11 ai 8,143
12 leerob.io 6,937
13 next-enterprise 5,624
14 nextjs-subscription-payments 5,511
15 platforms 5,285
16 ai-chatbot 5,251
17 LiveTerm 4,624
18 precedent 4,551
19 Grant 4,046
20 notion-blog 3,566
21 release 3,544
22 examples 3,328
23 running_page 3,316

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com