fix(core): update
This commit is contained in:
parent
64df05a868
commit
6f967553d6
13
package.json
13
package.json
@ -25,5 +25,16 @@
|
|||||||
"@types/http-proxy-middleware": "^0.19.3",
|
"@types/http-proxy-middleware": "^0.19.3",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
"http-proxy-middleware": "^0.19.1"
|
"http-proxy-middleware": "^0.19.1"
|
||||||
}
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/*",
|
||||||
|
"ts_web/*",
|
||||||
|
"dist/*",
|
||||||
|
"dist_web/*",
|
||||||
|
"dist_ts_web/*",
|
||||||
|
"assets/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
]
|
||||||
}
|
}
|
26
readme.md
Normal file
26
readme.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# @pushrocks/smartproxy
|
||||||
|
a proxy for handling high workloads of proxying
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartproxy)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartproxy)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartproxy)
|
||||||
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartproxy/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
[![build status](https://gitlab.com/pushrocks/smartproxy/badges/master/build.svg)](https://gitlab.com/pushrocks/smartproxy/commits/master)
|
||||||
|
[![coverage report](https://gitlab.com/pushrocks/smartproxy/badges/master/coverage.svg)](https://gitlab.com/pushrocks/smartproxy/commits/master)
|
||||||
|
[![npm downloads per month](https://img.shields.io/npm/dm/@pushrocks/smartproxy.svg)](https://www.npmjs.com/package/@pushrocks/smartproxy)
|
||||||
|
[![Known Vulnerabilities](https://snyk.io/test/npm/@pushrocks/smartproxy/badge.svg)](https://snyk.io/test/npm/@pushrocks/smartproxy)
|
||||||
|
[![TypeScript](https://img.shields.io/badge/TypeScript->=%203.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-prettier-ff69b4.svg)](https://prettier.io/)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
|
[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)
|
@ -1,5 +1,3 @@
|
|||||||
import * as plugins from './smartproxy.plugins';
|
import * as plugins from './smartproxy.plugins';
|
||||||
|
|
||||||
export class SmartproxyRouter {
|
export class SmartproxyRouter {}
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -13,7 +13,7 @@ export class SmartProxy {
|
|||||||
public addHostCandidate(hostCandidate: interfaces.IHostConfig) {
|
public addHostCandidate(hostCandidate: interfaces.IHostConfig) {
|
||||||
// TODO search for old hostCandidates with that target
|
// TODO search for old hostCandidates with that target
|
||||||
this.hostCandidates.push(hostCandidate);
|
this.hostCandidates.push(hostCandidate);
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* starts the proxyInstance
|
* starts the proxyInstance
|
||||||
|
@ -1,15 +1,10 @@
|
|||||||
// node native scope
|
// node native scope
|
||||||
import * as https from 'https';
|
import * as https from 'https';
|
||||||
|
|
||||||
export {
|
export { https };
|
||||||
https
|
|
||||||
};
|
|
||||||
|
|
||||||
// third party scope
|
// third party scope
|
||||||
import express from 'express';
|
import express from 'express';
|
||||||
import * as httpProxyMiddleware from 'http-proxy-middleware';
|
import * as httpProxyMiddleware from 'http-proxy-middleware';
|
||||||
|
|
||||||
export {
|
export { express, httpProxyMiddleware };
|
||||||
express,
|
|
||||||
httpProxyMiddleware
|
|
||||||
};
|
|
||||||
|
Loading…
Reference in New Issue
Block a user