Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/educastellano/proxy

A proxy to bind your apps to an API during development.
https://github.com/educastellano/proxy

proxy webapp

Last synced: 6 days ago
JSON representation

A proxy to bind your apps to an API during development.

Awesome Lists containing this project

README

        

# Proxy

A proxy to bind your apps to an API during development.

## Install

```sh
npm install @educastellano/proxy --save-dev
```

## Usage

Useful as a script in your package.json:

```
{
"start": "proxy --url http://mytestserver.com --static app"
}
```

**CLI Options**

```
--host // Host to bind (default 127.0.0.1)
--port // Port to bind (default 8080)
--url // Remote url
--static // Folder for static files
```

## Changelog

### 1.0.0

* Initial release