Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tbxark/vercel-proxy
Simple http proxy for Vercel.
https://github.com/tbxark/vercel-proxy
proxy vercel
Last synced: 3 months ago
JSON representation
Simple http proxy for Vercel.
- Host: GitHub
- URL: https://github.com/tbxark/vercel-proxy
- Owner: TBXark
- License: mit
- Created: 2024-06-12T10:25:54.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-09-17T13:13:29.000Z (4 months ago)
- Last Synced: 2024-11-02T07:20:34.852Z (3 months ago)
- Topics: proxy, vercel
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vercel Proxy
Simple http proxy for Vercel.
### Delpoy
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FTBXark%2Fvercel-proxy)
### Usage
```javascript
fetch("https://project-name.vercel.app/https://example.com?param1=value1¶m2=value2")
.then((res) => res.text())
.then(console.log.bind(console))
.catch(console.error.bind(console));```
```bash
curl -L https://project-name.vercel.app/https:/example.com?param1=value1¶m2=value2
```Just add `https://project-name.vercel.app/` before the url you want to proxy.
### License
**vercel-proxy** is released under the MIT license. [See LICENSE](LICENSE) for details.