# simple-proxy-server

> Simple HTTP to HTTPs proxy server

Latest version **0.0.2** (published 2014-08-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install simple-proxy-server
pnpm add simple-proxy-server
yarn add simple-proxy-server
bun add simple-proxy-server
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2014-08-17 |
| First published | 2014-08-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Roman Minkin |
| Maintainers | romanminkin |
| Keywords | proxy, http, https |

## Links

- npm: https://www.npmjs.com/package/simple-proxy-server
- Repository: https://github.com/RomanMinkin/simple-proxy-server
- Issues: https://github.com/RomanMinkin/simple-proxy-server/issues
- npm.io page: https://npm.io/package/simple-proxy-server

## Dependencies (3)

- [connect](https://npm.io/package/connect.md) ^3.1.1
- [basic-auth](https://npm.io/package/basic-auth.md) ^1.0.0
- [http-proxy](https://npm.io/package/http-proxy.md) ^1.3.0

## Recent versions

- 0.0.2 (latest) — 2014-08-17
- 0.0.0 — 2014-08-17

## README

simple-proxy-server
===================

Simple HTTP to HTTPs proxy server

Installation
===================

```bash
npm install simple-proxy-server --save
```

Basic Usage
===================

```javascript
var Proxy = require('simple-proxy-server'),
    p = new Proxy(
        'https://www.domain.ru',     // target destination
        8080,                        // port to listen on
        {host: 'www.domain.ru'},     // host for SSL
        {user: 'user', pass: 'pass'} // Basic Auth credentials for your proxy
    )
;

p.run(function(adress) {
    console.log('http proxy server %s', adress);
});
```

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