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 🙏

© 2026 – Pkg Stats / Ryan Hefner

node-2performant

v1.0.3

Published

Promise based node.js wrapper for 2performant API

Downloads

6

Readme

node-2performant

Promise based node.js wrapper for 2performant API

Installing

Using npm:

$ npm install node-2performant

Example

var TwoPerformant = require('node-2performant');

//Making user auth for affiliate
new TwoPerformant.Login('USERNAME','PASSWORD').then(function(user){

  //will return auth data and user data
  //you should save and encrypt this somewhere for future uses
  console.log(user);

  //instantiating TwoPerformant object with user auth
  var tp = new TwoPerformant(user.auth);

  //getting the affiliate object
  var affiliate = tp.affiliate();

  //fetching programs
  affiliate.getPrograms().then(function(affiliatePrograms){
    //will output programs and pagination
    console.log(affiliatePrograms);
  });

  //getting the advertiser object
  var advertiser = tp.advertiser();

  advertiser.getCommissions().then(function(res){
    console.log(res.commissions);
  });

});
//Making user auth for advertiser
new TwoPerformant.Login('USERNAME','PASSWORD').then(function(user){

  //will return auth data and user data
  //you should save and encrypt this somewhere for future uses
  console.log(user);

  //instantiating TwoPerformant object with user auth
  var tp = new TwoPerformant(user.auth);

  //getting the advertiser object
  var advertiser = tp.advertiser();

  advertiser.getCommissions().then(function(res){
    console.log(res.commissions);
  });

});

async/await example

var TwoPerformant = require('node-2performant');

async function run(){
  var user =  await new TwoPerformant.Login('USERNAME','PASSWORD');

  var tp = new TwoPerformant(user.auth);

  var affiliate = tp.affiliate();

  var affiliatePrograms = await affiliate.getPrograms();

  var affiliateProgram = await affiliate.getProgram('ID');
}
run();

Affiliate methods

//getting the affiliate object for easy access
var affiliate = tp.affiliate();

Input parameters are well documented in 2performant API

affiliate.getPrograms(params)
//all parameters are optional
var params = {
  page: 1, //Page number, default: 1
  perpage: 10, //Resources per page, default: 10

  //Filter object that contains optional fields for filtering resource results
  filter: {
    query: "", //Filter by on of fields [name, description, tos] can be full text searched using
    category: "", //Filter by Category name
    country: "", //Filter by Country name
  },

  //Sort object that contains any optional fields for sorting
  sort: {
    approved_commission_count: "", //Sort results asc or desc by price
    click_count: "", //Sort results asc or desc by actions
    epc: "", //Sort results asc or desc by clicks
  }
};

affiliate.getPrograms(params).then(function(affiliatePrograms){
  console.log(affiliatePrograms);
});
affiliate.getAllPrograms(params)
//for parameters see getPrograms method
affiliate.getAllPrograms(params).then(function(affiliatePrograms){
  console.log(affiliatePrograms);
});
affiliate.getProgram(id)
//id is required
affiliate.getProgram(id).then(function(affiliateProgram){
  console.log(affiliateProgram);
});
affiliate.getCommissions(params)
affiliate.getAllCommissions(params)
affiliate.getFeeds(params)
affiliate.getAllFeeds(params)
affiliate.getFeedProducts(id,params)
affiliate.getAllFeedProducts(id,params)
affiliate.getBanners(params)
affiliate.getAllBanners(params)
affiliate.getAdvertiserPromotions(params)

Advertiser methods

//getting the advertiser object for easy access
var advertiser = tp.advertiser();

Input parameters are well documented in 2performant API

advertiser.getPrograms(params)
advertiser.getAllPrograms(params)
advertiser.getProgram(id)
advertiser.getCommissions(params)
advertiser.getAllCommissions(params)
advertiser.createCommission(params)

Params accepts only commission parameters

advertiser.createCommission({user_id: 'INTEGER', amount: 'DECIMAL', description: 'STRING'});
advertiser.updateCommission(id,params)

Params accepts only commission parameters

advertiser.updateCommission(id,{reason: 'STRING', amount: 'DECIMAL', description: 'STRING'});
advertiser.acceptCommission(id)
advertiser.acceptCommission(id);
advertiser.rejectCommission(id,reason,params)

Params accepts only commission parameters

advertiser.rejectCommission(id,reason,params);

Custom feed parser

Custom feeds are the feeds generated on Tools > My Feeds.

You need to provide only the feed's unique id which is found in the URL:

https://api.2performant.com/feed/{ID}.csv
async function run(){
  var myFeed = new TwoPerformant.MyFeed('ID.csv');
  var data = await myFeed.parse();
  console.log(data);
};
run();

License

MIT