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

moxy

v0.1.3

Published

Testing, mocking and spying proxy

Downloads

109

Readme

Moxy – The Mocking Proxy

Moxy simplifies HTTP/REST mocking, spying and proxying for testing in Node.

When you set up a moxy server, you can set mocks to intercept requests and return mock data. If there is no mock set, the request will be forwarded.

API

You can set and remove mocks and see the logs through the moxy library or via HTTP by sending requests to the moxy server.

Starting Moxy

const moxyConfig = {
    port: 8080 // Optional: the port to run the moxy server on
    forward: 'target-url.com' // Optional: Any unmocked routes will be forwarded to this URL
}

const { start, stop, setMock } = moxy(moxyConfig)

start()

// Use moxy server
setMock(...)

await stop() // Await the moxy server to close down

HTTP

The HTTP API allows you to set, remove, and log mocks by making requests to the moxy server.

Setting Mocks

  • Set a mock for a method on a path - /<path>/_mocks/<method> - PUT

    • Defaults

      • You do not need to send any configuration to set a mock on the endpoint. If you do not configure the mock, the default response will be:
        • 200 status
        • No added headers
        • No response body
    • Setting a custom response

      • To set a custom response send an object using the following format in the body of the request:
          {
            response: {
              status: 204,
              data: {
                name: "Jerry Seinfeld"
              },
              headers: [
                ['Connection': 'close']
              ]
            }
          }
        All properties are optional. Excluding any of the properties will cause the default to be set.
    • Example usage

      // Sets a mock on the path /people/12 for get requests.
      fetch('/people/12/_mocks/get', {
        method: 'PUT',
        headers: [['Content-Type', 'application/json']],
        body: {
          response: {
            data: {
              name: 'Jerry Seinfeld',
              placeOfBirth: 'Queens, New York',
            },
          },
        },
      })

Removing Mocks

  • Remove all mocks - /_mocks - DELETE

    • Removes all mocks that have been set since initialising moxy.
    • Example usage
      fetch('/_mocks', {
        method: 'DELETE',
      })
  • Remove all mocks on path - <path>/_mocks - DELETE

    • Removes all mocks that have been set on a path, regardless of method.
    • Example usage
      // Removes any previously set mocks on the path /login
      fetch('login/_mocks', {
        method: 'DELETE',
      })
  • Remove all mocks on path for method - <path>/_mocks/<method> - DELETE

    • Removes a mock set on a path for a specific method.
    • Example usage
      // Removes a mock for handling POST requests to the /login route
      fetch('login/_mocks/post', {
        method: 'DELETE',
      })

JS / TypeScript

  • moxy.log(path?: string) => { log: LoggedRequest[], path?: string }
    • moxy.log() returns all requests made to the moxy server since moxy.start().
    • moxy.log(path) returns all requests made on that path. Includes the path in the response

Limitations

  • Moxy can only be used to mock sub routes. It can't be used to mock / at this time.