Skip to content

Mainostoimisto-Seven-1/printify-nodejs

Repository files navigation

Printify NodeJS

A library for calling the Printify API from Node.js written in TypeScript

Acknowledgements

Installation

Install printify-nodejs with npm

  npm install printify-nodejs

Usage/Examples

import { PrintifyClient } from "printify-nodejs";

const client = new PrintifyClient({
    token: "PRINTIFY_API_TOKEN",
    version: "v1", // API Version
    debug: false, // Optional, whether to console log debug message from api calls.
});

const shops = await client.getShops();

Documentation

Api reference available on tsdocs.dev

Authors

Feedback

If you have any feedback, please reach out to us at suosio@suosio.com or in the issues tab.