Socket
Socket
Sign inDemoInstall

path-proxy

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

path-proxy

A path proxy object constructor


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

path-proxy

path-proxy is based on my work on the Node client for the Heroku API. Its purpose is to, given a base constructor function and an array of paths (most likely for an API), build a network of proxy object constructors on top of that base constructor.

Example:

var pathProxy = require('path-proxy');

function Client () {
}

Client.prototype.sayHello = function () {
  return "hello";
}

pathProxy.proxy(Client, [
  "/foo",
  "/foo/{id}/bar",
  "/foo/{id}/bar/{id}/baz"
]);

var client = new Client(),
    baz    = client.foo("a").bar("b").baz();

// `baz` is a proxy object for "/foo/a/bar/b/baz". It also has access to
// `client` through its `base` parameter.
baz.params;          // ["a", "b"]
baz.path;            // "/foo/a/bar/b/baz"
baz.base.sayHello(); // "hello"

Proxy constructor functions can also be fetched individually:

var qux = pathProxy.pathProxy(Client, "/qux");

qux.prototype.foo = function () {
  return "foo";
}

client.qux().foo(); // "foo"

Note that this project is still extremely unstable. As in, don't be surprised at awful things like force-pushes to master.

Keywords

FAQs

Package last updated on 12 Dec 2013

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc