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

mati-sdk

v0.0.2

Published

Mati kyc node sdk

Readme

mati-sdk

Node.js client library for Mati.

Installation

  npm install mati-sdk

Documentation

You can find this library documentation in this page. This library is intended to ease the integration of mati using node. It handles authentication automatically, and provides developers a friendlier interaction. It also provides a webhook middleware for express and a header webhook validation function for webhooks.

For more information about mati api check our api documentation page.

The matiClient constructor takes a client ID, and client Secret paramenter.

var matiClient = require('mati-sdk').Mati;
var mati = new matiClient({
    'clientId': '{your_client_Id}',
    'secretId': '{your_secret_Id}',
});

Be aware that all class methods return promises.

mati.listIdentities()
  .then(identities => {
    console.log(identities)
  })
  .catch(err=> {
    // Handle error.
  });

What is Mati?

Mati verifies your users on the fly with the most advanced and secured technology. We’re creating a network of KYC verified people. If your user is already in Mati they won’t need to upload the required documents again, which make the verification process easier and smoother. Mati is using AI for assigning a verification score to a user based on their face match and documents.

Mati helps you to:

  • Mati allows you verify your customers using our biometric technology.
  • User verification flow automation
  • Customize your user verfication flow
  • Information sent directly to your backend
  • Official document checking. Support for mexican national ID document validation CURP and INE.
  • Facematch between selfie and document ID photo.
  • Livness check [not supported in this library yet]

Create a free Mati Account

  1. Go to mati dashboard and click "Try it for free".
  2. Create you API credentials on configuration screen.

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

WE ARE HIRING!

We are looking for the most talented people, if you're looking for an oportunity in an amazing startup, contact us!

License

This project is licensed under the MIT license. See the LICENSE file for more info.