New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nock-knock

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nock-knock

Advanced router handling for nock

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-99.56%
Maintainers
1
Weekly downloads
 
Created
Source

nock-knock

This module scratches some of my itches. When I define mocks I want to use URL params in the URL instead of writing regexp's or manually creating functions that do the path validation. So in modules uses the routable module to constructor a route with params, then returns a function that validates if received URL is accepted by routable. If there are params defined and we have validators for it, we will execute those so you can still deny specific paths.

Installation

npm install --save nock-knock

Who's there?

Usage

Import the module, give it an URL and pass it in the nock methods:

import route from 'nock-knock';
import nock from 'nock';

nock('https://example.com')
.get(route('/url/:param/another'))
.reply(200, 'another');

If you want to validate params you can supply an object as second argument. The keys in the object should match the name of the param:

nock('https://example.com')
.get(route('/url/:foo/bar', {
  foo: function validate(value) {
    return value === 'bar'
  }
}))

// Intercepts /url/bar/bar

License

MIT

Keywords

FAQs

Package last updated on 14 Jun 2018

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