Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
egg-http-proxy
Advanced tools
Configure proxy middleware for egg. Use http-proxy-middleware.
$ npm i egg-http-proxy --save
// {app_root}/config/plugin.js
exports.httpProxy = {
enable: true,
package: 'egg-http-proxy',
};
Proxy /api
requests to http://www.example.org
:
// {app_root}/config/config.default.js
exports.httpProxy = {
'/api': 'http://www.example.org'
};
A request to /api/users
will now proxy the request to http://www.example.org/api/users
.
If you don't want /api
to be passed along, we need to rewrite the path:
// {app_root}/config/config.default.js
exports.httpProxy = {
'/api': {
target: 'http://www.example.org',
pathRewrite: {'^/api' : ''}
}
};
For more advanced usages, checkout http-proxy-middleware options documentation.
Please open an issue here.
FAQs
proxy middleware plugin for egg
The npm package egg-http-proxy receives a total of 46 weekly downloads. As such, egg-http-proxy popularity was classified as not popular.
We found that egg-http-proxy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.