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

tundra-fetch

v1.2.2

Published

Tundra-fetch is a client for the Tundra server that assist with offline test data management specifically for projects using the fetch http library

Downloads

22

Readme

Tundra-Fetch

license-MIT npm version CircleCI codecov

Tundra-fetch is Javascript-based client for the Tundra server that helps with offline test data management - specifically for projects using the fetch http library.

Installing the Client

npm install --save tundra-fetch

Using the Client

There are two main uses for the client:

Intercepting Fetch Calls

This client is built to intercept all uses of the fetch library and forward them to the Tundra server to be recorded for offline use. To do this, we need to initialize the interceptor when the application starts up and direct it to our server:

function someAppInitFunction() {
    require('tundra-fetch').interceptFetchCalls(9090);
}

Port 9090 in this case is completely configurable based on what port we start our server on.

The idea is to only enable this code before running a manual test of the app, so ensure that you remove this before going to production or is toggled off for a production build

Replay

After a profile has been captured, you now have an offline data store that can be replayed during an end-to-end test.

When and where you decide to load the profile is up to the specific needs of your application. However, getting the traffic from the profile to replay during the test execution is as simple as:

import {replayProfile} from 'tundra-fetch'
...
loadProfile() {
    replayProfile(require("./fixtures/profiles/scenario1.json"));
}
Customizing Replay Behavior

For finer-grained control over replay functionality, you may specify an optional config parameter. For example:

const config = {
  repeatMode: 'last'
}

replayProfile(require("./fixtures/profiles/scenario1.json", config));
Config options:

| Option | Description | | ------ | ------ | | headersToOmit | An array of header keys to ignore (ex. ['Accept-Encoding', 'User-Agent'])| | repeatMode | errorAfterLast (default): Replay exactly as recorded but throw an error for further requestsfirst: Always repeat the first recorded responselast: Replay exactly as recorded and then repeat the last request forever | debuggingEnabled | default: true - All profile replay activity will be sent to the Tundra server and visible in the Tundra console. (Only available using tundra-cli 2.0.0 or higher) | debugPort | default: 9091 - The port number of the Tundra server to send request debug data.

Using Wildcards to Match Requests

There are times when an application will use dynamic data and the body, headers or url will not be exactly the same each time (ex. including the current date in the request body).

For these scenarios, Tundra provides a special wildcard syntax to allow requests to be fuzzy-matched:

Matching the Body

For example, let's say you have a profile with the following layout after capturing a request:

[
  {
    "request": {
      "url": "https://www.someapi.com/user",
      "headers": { ... }
      },
      "method": "POST",
      "content": "{\"name\":\"John Doe\",\"created\":1533654607}"
    },
    "response": { ... }
  }
]

In this case, the created property in the content is just the current date, so this will change from request to request. To get around this, you can use {{*}}, which acts like a traditional wildcard matcher:

...
"content": "{\"name\":\"John Doe\",\"created\":{{*}}}"
...

Now the request will be matched, no matter what the value of created is.

Matching the URL
...
"url": "https://www.someapi.com/user?created={{*}}&name=John"
...
Matching Headers
...
"headers": {
  "SomeHeader": "Wildcards can be {{*}} anywhere"
  ...
 }
...

Working Example and More

The best way to understand this tool is to see is used in context. For a full, working example look at react-native-tundra (coming soon).

Additionally, it may be helpful to read this article on offline testing for the philosophy behind why Tundra was created: Test your mobile app offline for lightning fast, reliable automation