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

@wildlink/backend-js-client

v1.0.0

Published

JavaScript Client Library for working with Wildfire/Wildlink APIs server side. Convert product and brand links into affiliate versions to generate revenue. Learn more at https://www.wildlink.me/.

Downloads

4

Readme

backend-js-client

JavaScript Client Library for working with Wildfire/Wildlink APIs server side. Convert product and brand links into affiliate versions to generate revenue. Learn more at https://www.wildlink.me/.

Requirements

  • Node.js
  • package manager (npm or yarn)

Installation

With Yarn:

yarn add @wildlink/backend-js-client

Usage

// 1. Load
const { WildlinkClient } = require('@wildlink/backend-js-client');

// 2. Create instance of WildlinkClient

// Application id
const appId = APPLICATION_ID;
// Application key
const appKey = APPLICATION_KEY;

const WLClient = new WildlinkClient(appId, appKey);

// 3. Initialize

WLClient.init().then(() => {
  // deviceId is used for referencing the device in reporting data
  const deviceId = WLClient.getDeviceId();
  // deviceKey is used for authenticating the device in the future - it doesn't expire
  const deviceKey = WLClient.getDeviceKey();
  // deviceToken is used for authenticating the device - it expires
  const deviceToken = WLClient.getDeviceToken();

  // 4. Make API requests (see below)
});

To obtain an appId and appKey, contact [email protected].

Get Supported Merchant Domains

The getDomains function fetches all domains that we support and are wildlink-able. These are in the context of the authenticated device that made the call.

WLClient.getDomains().then((domains) => {
  console.log(domains);
});

Example return

[
  {
    ID: "8NkEhsh5FA",
    Kind: "domain",
    Value: "theblackbow.com",
    URL: "http://wild.link/8NkEhsh5FA"
  },
  {
    ID: "8NkE1tKFAQ8",
    Kind: "domain",
    Value: "acetag.com",
    URL: "http://wild.link/8NkE1tKFAQ8"
  },
  {
    ID: "8NkE5byZAQM",
    Kind: "domain",
    Value: "www.adagio.com",
    URL: "http://wild.link/8NkE5byZAQM"
  },
  {
    ID: "8NkE3tKFAQ4",
    Kind: "domain",
    Value: "awesomeseating.com",
    URL: "http://wild.link/8NkE3tKFAQ4"
  },
  {
    ID: "8NkE8NCFAQo",
    Kind: "domain",
    Value: "theblackbox.com",
    URL: "http://wild.link/8NkE8NCFAQo"
  },
  ...
]

Generate Vanity URL

The generateVanity function converts a URL (to a product page, listing page, etc.) to a wild.link URL with embedded tracking for the authenticated device.

WLClient.generateVanity('https://www.walmart.com').then((vanity) => {
  console.log(vanity);
});

Example Return

{
  OriginalURL: "https://www.walmart.com",
  VanityURL: "http://wild.link/walmart/AK2vBQ"
}

Example

Check out the example for implementation details.