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

znmi

v0.2.0

Published

A simple and easy TypeScript wrapper around NMI's API

Downloads

61

Readme

ZNMI TypeScript Wrapper

The ZNMI TypeScript Wrapper is a comprehensive library designed to facilitate interactions with the NMI (Network Merchants, Inc.) API in a type-safe and structured manner. This wrapper simplifies the integration of NMI's payment gateway services into TypeScript applications by providing easy-to-use functionalities for managing customer vaults, transactions, products, invoices, and recurring payments.

Features

  • Customer Vault: Securely manage customer data by easily adding, updating, or deleting customer information in the NMI Customer Vault.
  • Transactions: Process a wide range of transactions including sales, authorizations, credits, validations, and offline transactions, with detailed responses.
  • Product Manager: Dynamically manage products by adding or deleting them in the NMI Product Manager.
  • Invoices: Seamlessly integrate billing and payment processing by creating and managing invoices.
  • Recurring Payments: Support various billing cycles and payment methods by adding and managing recurring payment plans.

Installation

To integrate the ZNMI wrapper into your TypeScript project, follow these steps:

  1. Install the package via npm or yarn:

    npm install znmi
    # or
    yarn add znmi
  2. Import the package into your project:

    import { ZNMI } from 'znmi';
  3. Instantiate the ZNMI class with your security key:

    const znmi = new ZNMI('your_security_key_here');

Usage Examples

Below are some examples demonstrating how to use the ZNMI wrapper to interact with various components of the NMI API.

Adding a Customer

const addCustomerRequest = {
  ccnumber: "4111111111111111",
  ccexp: "1234",
};
const response = await znmi.customerVault.addCustomer(addCustomerRequest);
console.log(response.data);

Processing a Transaction

const validateTransactionRequest = {
  ccnumber: "4111111111111111",
  ccexp: "1025",
  cvv: "123",
};
const response = await znmi.transactions.validateTransaction(validateTransactionRequest);
console.log(response.data);

Adding a Product

let productSku = `sku${Math.floor(Math.random() * 10000)}`;
const addProductRequest = {
  product_sku: productSku,
  product_description: "Test Product",
  product_cost: "19.99",
  product_currency: "USD",
};
const response = await znmi.products.addProduct(addProductRequest);
console.log(response.data);

Creating an Invoice

const createInvoiceRequest = {
  amount: 1.0,
  email: "[email protected]",
};
const response = await znmi.invoices.createInvoice(createInvoiceRequest);
console.log(response.data);

Adding a Recurring Payment Plan

const subscriptionId = `sub${Math.floor(Math.random() * 10000)}`;
const addRecurringPlanRequest = {
  plan_name: "Monthly Subscription",
  plan_amount: 9.99,
  day_frequency: 31,
  plan_id: subscriptionId,
};
const response = await znmi.recurring.addRecurringPlan(addRecurringPlanRequest);
console.log(response.data);

Running Tests

To ensure the functionality of the ZNMI wrapper, a suite of tests is provided. These tests cover the instantiation of the ZNMI class, the creation of various objects (CustomerVault, Transactions, Products, Invoices, Recurring), and the execution of key operations such as adding and updating customers, processing transactions, managing products, creating invoices, and handling recurring payments. To run the tests, execute the following command in your terminal: vitest run This command will run all tests defined in the znmi.test.ts file, which also has the testing security key in it for NMI, verifying the correct behavior of the ZNMI wrapper's functionalities.

Further Reading

For more detailed information on transaction types, response variables, and testing methods, please refer to the official card brand documentation and the NMI API documentation. These resources provide comprehensive guidelines and best practices for integrating payment gateway services into your applications.

If you have any questions or concerns please feel free to Join my Discord

Changelog

  • 0.2.0 - Added keywords to the NPM package for easier discoverability and fixed these changelogs, lol
  • 0.1.9 - Added uh whatever they're called in javascript, JSDocs? type hints and descriptions to the functions kay?
  • 0.1.8 - Added missing function to recurring for adding a custom subscription by credit card, rather than only ACH, also updated ZOD parses to use safeParse rather than parse
  • 0.1.7 - Exported types for requests and such from the functions, in theory that'll fix the typehints not showing up
  • 0.1.6 - Fixed publish script order oops
  • 0.1.5 - Added tsc as a prepublish step to hopefully get return types fixed
  • 0.1.4 - Added the return types to export in index so you can use em
  • 0.1.3 - Added return types to all functions
  • 0.1.2 - Added additional methods I forgot to customerVault, added more tests for data to use in my integration package
  • 0.1.1 - Fixed Vite dependency instead of dev dependency