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 🙏

© 2026 – Pkg Stats / Ryan Hefner

shortquest

v0.1.0

Published

HTTP request client supporting shortcut urls

Downloads

11

Readme

NPM version Build Status Dependency Status

HTTP request client supporting shortcut urls

This library has the following purposes:

  • provide shortcuts for urls the same way a curie would (e.g wiki:picasso instead of http://mywiki.com/picasso).
  • provide contextualisation for urls (e.g env becomes stage in http://env.mywiki.com/picasso)
  • provide automatic headers based on rules.
  • provide automatic authentication based on rules.
  • provide automatic SSL certificates based on rules.
  • provide JSON support.
  • provide support for request.js.
  • provide support for (asynchronous) promises.
  • provide support for piping.

The main idea is help to store urls in a compact form. It is very similar to the concept of curie.

For instance:

{
	name: "Picasso",
	websites: ["wikipedia:Picasso","bbc:Picasso","tate:Picasso"]
}

The exact urls, as well as all information concerning headers and authorisation are provided by the rules engine.

Install

$ npm install --save shortquest

Usage

All the possible rules are described in details in RULES.md. You should also consult the request.js documentation as this library is used under the hood. In addition, the unit tests (test.js) are also a good source of examples.

GET Request

var shortquest = require('shortquest');

var rulesConf = {
    rules: [{
        when: [{
            trigger: "uri starts with",
            value: "wiki:"
        }],
        then: [{
            action: "replace start",
            values: ["wiki:", "http://mywiki.com/"]
        }]
    }]
};
var myshortquest = shortquest(rulesConf);

myshortquest.request("wiki:picasso", function(error, response, body) {
            console.log(body);
            //will get the body for url: http://mywiki.com/picasso
        });

POST, PUT, DELETE Requests

You could perform any kind of requests by specifying the method with POST,PUT,DELETE,PATCH or HEAD. The body could be some json or a string. Note that for a good JSON support you will need to add a "set JSON" rule.

Example:

myshortquest.request({
            uri: "wiki:picasso",
            method: 'POST',
            body: {title: "good story"}
        }, function(error, response, body) {
            //log success or error
        });

Passing parameters

You can pass request parameters with parameterObj:

myshortquest.request({
            uri: "wiki:picasso",
            parameterObj: {search: "birth"}
        }, function(error, response, body) {
            //log success or error
        });

Passing a form

You can pass a form with formObj:

myshortquest.request({
            uri: "wiki:picasso",
            method: "POST",
            formObj: {firstName: "Pablo"}
        }, function(error, response, body) {
            //log success or error
        });

Passing tags

You can pass tags that can be used by the rule engine:

myshortquest.request({
            uri: "wiki:picasso",
            method: "POST",
            tags: ["sandbox", "XML"]
        }, function(error, response, body) {
            //log success or error
        });

Pipe a request

It is possible to pipe requests:

Example:

myshortquest.request("curie:latest/123.jpg").pipe(requests.request({
            uri: "curie:update/post123.json",
            method: 'POST'
        }));

Async

You can also do asynchronous requests using promises (we are using bluebird internally);

Example:

    myshortquest.requestAsync("curie:latest/123.jpg").then(function(data) {
        var response = data[0];
        var body = data[1];
     });

License

MIT © Olivier Huin

Contributors

..and with the help of Aradhna ..