Skip to content

Commit f3ecedb

Browse files
committed
Update Readme to use Vercel instead of Zeit
1 parent 059c852 commit f3ecedb

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
<img src="https://img.shields.io/badge/MADE%20BY%20Vercel-000000.svg?style=for-the-badge&logo=ZEIT&labelColor=000000&logoWidth=20">
55
</a>
66

7-
[![Build Status](https://circleci.com/gh/zeit/serve.svg?&style=shield)](https://circleci.com/gh/zeit/serve)
7+
[![Build Status](https://circleci.com/gh/vercel/serve.svg?&style=shield)](https://circleci.com/gh/vercel/serve)
88
[![Install Size](https://packagephobia.now.sh/badge?p=serve)](https://packagephobia.now.sh/result?p=serve)
9-
[![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/zeit)
109

1110
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.
1211

@@ -48,19 +47,19 @@ Now you understand how the package works! :tada:
4847

4948
## Configuration
5049

51-
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).
50+
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).
5251

5352
## API
5453

55-
The core of `serve` is [serve-handler](https://github.com/zeit/serve-handler), which can be used as middleware in existing HTTP servers:
54+
The core of `serve` is [serve-handler](https://github.com/vercel/serve-handler), which can be used as middleware in existing HTTP servers:
5655

5756
```js
5857
const handler = require('serve-handler');
5958
const http = require('http');
6059

6160
const server = http.createServer((request, response) => {
6261
// You pass two more arguments for config and middleware
63-
// More details here: https://github.com/zeit/serve-handler#options
62+
// More details here: https://github.com/vercel/serve-handler#options
6463
return handler(request, response);
6564
})
6665

@@ -69,15 +68,15 @@ server.listen(3000, () => {
6968
});
7069
```
7170

72-
**NOTE:** You can also replace `http.createServer` with [micro](https://github.com/zeit/micro), if you want.
71+
**NOTE:** You can also replace `http.createServer` with [micro](https://github.com/vercel/micro), if you want.
7372

7473
## Contributing
7574

7675
1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device
7776
2. Uninstall `serve` if it's already installed: `npm uninstall -g serve`
7877
3. Link it to the global module directory: `npm link`
7978

80-
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.
79+
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.
8180

8281
## Credits
8382

0 commit comments

Comments
 (0)