From f3ecedb7079bf89284568dcc437987455b47aef3 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Thu, 4 Jun 2020 14:55:24 -0700 Subject: [PATCH] Update Readme to use Vercel instead of Zeit --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2472e6c1..46379679 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,8 @@ -[![Build Status](https://circleci.com/gh/zeit/serve.svg?&style=shield)](https://circleci.com/gh/zeit/serve) +[![Build Status](https://circleci.com/gh/vercel/serve.svg?&style=shield)](https://circleci.com/gh/vercel/serve) [![Install Size](https://packagephobia.now.sh/badge?p=serve)](https://packagephobia.now.sh/result?p=serve) -[![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/zeit) Assuming you would like to serve a static site, single page application or just a static file (no matter if on your device or on the local network), this package is just the right choice for you. @@ -48,11 +47,11 @@ Now you understand how the package works! :tada: ## Configuration -To customize `serve`'s behavior, create a `serve.json` file in the public folder and insert any of [these properties](https://github.com/zeit/serve-handler#options). +To customize `serve`'s behavior, create a `serve.json` file in the public folder and insert any of [these properties](https://github.com/vercel/serve-handler#options). ## API -The core of `serve` is [serve-handler](https://github.com/zeit/serve-handler), which can be used as middleware in existing HTTP servers: +The core of `serve` is [serve-handler](https://github.com/vercel/serve-handler), which can be used as middleware in existing HTTP servers: ```js const handler = require('serve-handler'); @@ -60,7 +59,7 @@ const http = require('http'); const server = http.createServer((request, response) => { // You pass two more arguments for config and middleware - // More details here: https://github.com/zeit/serve-handler#options + // More details here: https://github.com/vercel/serve-handler#options return handler(request, response); }) @@ -69,7 +68,7 @@ server.listen(3000, () => { }); ``` -**NOTE:** You can also replace `http.createServer` with [micro](https://github.com/zeit/micro), if you want. +**NOTE:** You can also replace `http.createServer` with [micro](https://github.com/vercel/micro), if you want. ## Contributing @@ -77,7 +76,7 @@ server.listen(3000, () => { 2. Uninstall `serve` if it's already installed: `npm uninstall -g serve` 3. Link it to the global module directory: `npm link` -After that, you can use the `serve` command everywhere. [Here](https://github.com/zeit/serve/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+for+beginners%22)'s a list of issues that are great for beginners. +After that, you can use the `serve` command everywhere. [Here](https://github.com/vercel/serve/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+for+beginners%22)'s a list of issues that are great for beginners. ## Credits