npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

prosthetic

v0.2.4

Published

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 (

Downloads

21

Readme

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>"
  }
]