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

woden

v3.3.1

Published

A small, simple proxy server module with some nice controls for caching.

Downloads

34

Readme

Woden Build Status

Woden

Woden is a small, simple proxy server module with some nice controls for caching.

Its name comes from the Germanic god Woden's traditional role as the leader of the Wild Hunt.

Install

$ npm install woden

Usage

var Woden = require( 'woden' ),
    woden = new Woden({}),
    DS = {};
    
woden.when( /google/, {
    getKey: function( path, query ) { // allows you to generate keys
        return 'foo:' + path; 
    },
    headers: {
        'X-Bar': 'Baz' // set custom headers when sending to proxy
    },
    params: {
        'apiKey': 'myToken' // set additional url param when sending to proxy
    },
    caching: false // don't cache responses from google
});

woden.when( /foo.org/, {
    cacheTimeout: function( cacheEntry, req, proxyRes ) {
        if ( cacheEntry.body.length > 10000000 ) {
            return -1; // don't cache big responses
        }

        if ( req.url.match( /bar/) ) {
            return 0; // cache bar stuff forever
        }

        if ( proxyRes.statusCode === 404 ) {
            return -1; // don't cache 404 responses
        }

        return 10000; // only cache for 10 seconds
    }  
});

woden.store({ // custom storeAdapter
    get: function( key, callback ) {
        callback( null, DS[key] ); // getting information
    },
    set: function( key, value, callback, cachetimeMS ) { // setting values to store
        DS[ key ] = value; // value.body is a buffer 
        callback( );
    }
});

woden.listen( 9000 ); // listen on port
Hitting server
$ curl -L -G -d "\$url=http://google.com" http://localhost:9000/

to set the url of the page to proxy to, set the $url param. Also if you need to specify a path you can either do that in the $url param or on the original.

$ curl -L -G -d "\$url=http://google.com" http://localhost:9000/imghp

or

$ curl -L -G -d "\$url=http://google.com/imghp" http://localhost:9000