
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
hyperproxy
Advanced tools

Reverse proxy with advanced routing capabilities
Uses urlglob for route matching
NOTE This project is still early days. Use it on personal servers, side projects and other applications that aren't super critical. Please file bugs to help me track down issues!
For some battle-hardened alternatives, check out nodejitsu's node-http-proxy and dotCloud's hipache
$ npm install hyperproxy
Checkout hyperproxy-cli
const Hyperproxy = require('hyperproxy')
const proxy = new Hyperproxy({
servers: [
// routes are tested in order, so exact matches should come first
// and less specific routes afterwards
// exact matches, routes to local ports
[ 'pi.example.org', ':3141' ],
// HTTPS servers require a more explicit definition
{ pattern: 'tau.example.org',
endpoint: ':1618',
https: {
key: fs.readFileSync('/path/to/tau-key.pem'),
cert: fs.readFileSync('/path/to/tau-cert.pem'),
}
},
// `forceSecure` will force a 301 redirect to the HTTPS server when
// the HTTP server is hit. You should also consider adding a
// `Strict-Transport-Security` header.
{ pattern: 'euler.example.org',
endpoint: ':2718',
forceSecure: true,
https: {
key: fs.readFileSync('/path/to/euler-key.pem'),
cert: fs.readFileSync('/path/to/euler-cert.pem'),
}
},
// route to an external domain
[ 'google.example.org', 'google:80' ],
// matches
// - 'images.example.org'
// - 'stuff.user.example.org'
// - '⚡.example.org'
[ '*.example.org', '/tmp/any-subdomain.socket' ],
// url matching!
[ 'example.org', [
// matches all sub paths, e.g. /static/a/b/
['/static/*', '/tmp/static.socket' ],
// use '*?' to match one level deep, e.g '/js/x.js',
// but not '/js/sub/x.js'
['/js/*?', '/tmp/javascript.socket' ],
// matches '/v2/x/y/z.json', '/v22.73/stuff.json'
['/api/*.json', '/tmp/json-api.socket' ],
// matches '/v1/x/y/z.xml', '/vπ/stuff.xml'
['/api/*.xml', '/tmp/xml-api.socket' ],
// handle anything that falls through.
[ '*', '/tmp/default.socket' ],
]],
// this is exactly the same as above, only it uses the explicit
// style of configuration instead of the implicit style.
{ pattern: 'example.org',
routes: [
{ pattern: '/static/*', endpoint: '/tmp/static.socket' },
{ pattern: '/js/*?', endpoint: '/tmp/javascript.socket' },
{ pattern: '/api/*.json', endpoint: '/tmp/json-api.socket' },
{ pattern: '/api/*.xml', endpoint: '/tmp/xml-api.socket' },
{ pattern '*', endpoint: '/tmp/default.socket' },
]
},
]
})
const server = proxy
.createServer(function(req, res, proxyRoute){
// callback is optional, if nothing is passed proxying will
// happen as normal. when a callback is passed, calling `proxyRoute`
// will continue on to the proxy routing process.
res.headers['x-proxy'] = 'hyperproxy'
proxyRoute() // continue to proxy routing
}).listen(80)
// `createServer` only makes the HTTP server, if you want to also
// make the HTTPS server, you have to call `createSecureServer`.
const secureServer = proxy
.createSecureServer()
.listen(443)
Hyperproxy uses Server Name Indication to choose different certificates based on hostname. While SNI has wide support at this point, not all platforms support it, notably Windows XP. Microsoft is ending support for Windows XP, on 2014-04-08 so it is expected that the userbase with SNI capability will grow as the last holdouts on XP upgrade their systems.
There are number of things that can go wrong when trying to proxy a request: it could not match any routes, the socket could be missing or dead, the remote host could be down or something else completely unexpected.
When this happens, the default method of handling it will be to return a HTTP 502: Bad Gateway to the requesting client. However, if you attach an event handler to any one of the events below, the default behavior will be bypassed (though you will still be able to invoke it from the event handler).
All event handlers other than proxyError get four arguments: (err, req, res, defaultHandler). proxyError only receives the error.
defaultHandler is a reference to the default error handler. For example, if you wanted to log all unknown errors and passthrough to the default handler, you could do the following:
proxyErrorGets emitted on any error, in addition to the more specific events below. This can be useful for logging.
proxyMissA route couldn't be found
missingSocketFileCouldn't find the socket file associated with the route
hostNotFoundCouldn't find the host associated with the route
unknownErrorCatch-all for any other problems that occur when trying to attach an endpoint to a request.
server.on('unknownError', function(err, req, res, defaultHandler){
// use your log handler
logger.log('unknown proxy error', err)
defaultHandler()
})
These may be implemented as plugins later on.
HTTP and HTTPS only, no websocket support yet.MIT
Copyright (c) 2013 Brian J. Brennan
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Transparently proxy to local ports or sockets with advanced routing.
We found that hyperproxy 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.