# express-http-proxy-extended

Latest version **1.0.0** (published 2016-02-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install express-http-proxy-extended
pnpm add express-http-proxy-extended
yarn add express-http-proxy-extended
bun add express-http-proxy-extended
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-02-23 |
| First published | 2016-02-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jan-André Zinser |
| Maintainers | zinserjan |
| Keywords | express, proxy |

## Links

- npm: https://www.npmjs.com/package/express-http-proxy-extended
- Repository: https://github.com/zinserjan/express-http-proxy-extended
- Homepage: https://github.com/zinserjan/express-http-proxy-extended#readme
- Issues: https://github.com/zinserjan/express-http-proxy-extended/issues
- npm.io page: https://npm.io/package/express-http-proxy-extended

## Dependencies (1)

- [express-http-proxy](https://npm.io/package/express-http-proxy.md) 0.6.0

## Recent versions

- 1.0.0 (latest) — 2016-02-23

## README

# express-http-proxy-extended


Express proxy middleware to forward request to another host and pass response back

## Install

```bash
$ npm install express-http-proxy-extended --save
```

## Usage

```js
var proxy = require('express-http-proxy-extended');

var app = require('express');

app.use('/proxy', proxy('www.google.com', {
  rewriteCookies: true, // rewrites secure, path & domain of received cookies
  cookiePath: '/', // default is /
  cookieDomain: '' // default is ''
}));

app.listen(3000, function () {
  console.log('Example app listening on port 3000!');
});
```

## Licence

MIT

---
_Source: https://npm.io/package/express-http-proxy-extended · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
