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

polymatch

v1.1.4

Published

### Summary

Downloads

17

Readme

polymatch

Summary

  • Accept: application/json+user will trigger user filter
  • Accept: application/json+v1+user will trigger both v1 and user filters respectively.
  • .type(['v1', 'user']) will trigger also.
  • .type('application/json+v1+user') will trigger also.
  • filter1.use(filter2) composition works; similar to express-router.
  • filter1.use({ key: [Function] }) json composition works.

Examples

const Polymatch = require('polymatch')
const filters = new Polymatch()

filters
    .on('v1/*')
    .use('user', (input) => {
        // transform for version
        input.uid = input.user_id
        return input
    })
    .use('company:1089', (input) => {
        // transform for specific customer
        input.name = `[${input.name}]`
        return input
    })
    .on('v1/result*')
    .use(require('./filter.result.js'))

// on router and handler
const result = this.filters
                .on('v1/result.xml')
                .input(rows)
                .type(req.get('accept') || ['json'])
                .value()

Try

> Polymatch = require('polymatch')
[Function: Polymatch]
> f = new Polymatch
Polymatch { targets: [] }

> f.on('name/v1').use('full', (input) => { input.full = input.first + ' ' + input.last; return input })
Polymatch {
  targets: { 'name/v1': { full: [Function] } },
  selectedTarget: 'name/v1' }

> name = {first: 'Barack', last: 'Obama'}

> f.on('name/v1').input(name).type('application/json+not-existing-type').value()
{first: 'Barack', last: 'Obama'}

> f.on('name/version-3').input(name).type('application/json+full').value()
{first: 'Barack', last: 'Obama'}

> f.on('name/v1').input(name).type('application/json+full').value()
{first: 'Barack', last: 'Obama', full: 'Barack Obama'}


> f.on('name/v1').use({simple: (input) => { input.simple = input.first[0] + input.last[0]; return input }})

> f.on('name/v1').input(name).type('application/json+simple').value()
{ first: 'Barack',
  last: 'Obama',
  full: 'Barack Obama',
  simple: 'BO' }

> f.on('name/v1').input({first: 'Barack', last: 'Obama'}).type(['full']).value()
{first: 'Barack', last: 'Obama', full: 'Barack Obama'}

Tests

mocha test.js

  filter
    ✓ payload with single mime-type string
    ✓ payload with multiple mime-type string
    ✓ composition with json
    ✓ payload with multiple mime-type array
    - payload with undefined filters
    - payload with multiple require filters


  4 passing (12ms)
  2 pending

Changelog

  • Version 1.1.0 2017-11-22: from to input, to to type
  • Version 1.0.2 2017-11-21: Go to public with MIT license.

Author

Jin Lee (currently working at @playauto)