Prosthetic
A web proxy for augmenting web sites with new capabilities
Install / Use
/learn @stamen/ProstheticREADME
Prosthetic
Prosthetic is a Node web proxy that allows you to manipulate web sites with simple (yet flexible) JSON configuration files. As a node module, it exposes an express-compatible server function (the module export) and a suite of operations for manipulating (inserting, removing and replacing) response body content.
Running the proxy
To run a proxy, just run server.js with node:
$ node server.js --proxy http://example.com
# or
$ ./server.js --proxy http://example.com
Then visit localhost:8001 in your browser. Run node server.js --help (or without any arguments) to see the full usage:
Usage:
1. with a proxy URL and one or more injections:
node ./server.js --proxy URL [injections]
2. with a JSON config and proxy URL:
node ./server.js -c config.json --proxy URL [options] [injections]
3. with a JSON config that includes the 'proxy' option:
node ./server.js -c config.json [options] [injections]
where [injections] is an optional list of JSON filenames
containing injection specs.
Options:
--proxy, -p the URL to proxy (e.g. http://example.com)
--rewrite, -r whether to rewrite the proxy URL in each response
--config, -c the config file to load
--port, -P the port on which to listen (default: 8001)
The included config.sample.json is a good place to start for building a
configuration.
The ops directory contains some examples of operations to run in your proxy.
For instance, the included d3.json simply adds
d3.js to the proxied web page, and
reset-css.json pulls in the YUI CSS
Reset.
Operations
Operations are what Prosthetic does to the contents of proxied web pages.
Positional arguments to server.js are interpreted as filenames parsed as
JSON operation specs. Supported operations include inserting text,
HTML elements, scripts and stylesheets; and replacing or removing content.
Add a script (e.g., d3.js):
{
"type": "script",
"url": "http://d3js.org/d3.v3.min.js"
}
Add a stylesheet (e.g., reset css):
{
"type": "style",
"url": "http://yui.yahooapis.com/3.14.0/build/cssreset/cssreset-min.css"
}
To propose a redesign for a web site with your own stylesheets, you could remove all of the CSS from each page first (the "comment" fields are ignored):
[
{
"comment": "replace all <link rel=stylesheet> elements",
"type": "remove",
"text": "<link[^>]+rel=.?stylesheet.?[^>]*>(</link>)?"
},
{
"comment": "replace all <style> elements",
"type": "remove",
"text": "<style[^>]*>[^<]*</style>"
}
]
Related Skills
node-connect
343.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
90.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.1kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
