Skip to content

fabrix-app/generics-shipstation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

generics-shipstation

Gitter NPM version Build Status Test Coverage Dependency Status Follow @FabrixApp on Twitter

Generic Fulfillment Provider for Shipstation.com.

Looking for Spool-Generics?

Install

$ npm install --save @fabrix/generics-shipstation

Configure

// config/generics.ts
export const generics = {
  // make the key shipstation, alternatively make the key payment_processor to be the default payment_processor  
  shipstation: {
    adapter: require('@fabrix/generic-shipstation').ShipstationGeneric,
    config: {
        shipstation_public: '<your public key>',
        shipstation_secret: '<your private key>'
    },
    api: require('@fabrix/generic-shipstation/api'),
    icon: '' // url to an icon you want to use for this generic
  }
}