0.6.0 • Published 2 years ago

@missum/node v0.6.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Missum Node

npm version Dependencies npm downloads code style: prettier License: MIT CI workflow

This library allows you to quickly and easily use the Missum API via Node.js.

Install

Install with yarn:

yarn add @missum/node

Install with npm:

npm install @missum/node

Usage

import { Missum } from '@missum/node';

const client = new Missum('YOUR_API_KEY');

// Start a verification flow
await client.startVerification({
  phoneNumber: '+6143456789',
});

// Submits verification code
const result = await client.checkVerification({
  phoneNumber: '+6143456789',
  verificationCode: '192847',
});

// result: { success: boolean; status: 'PENDING' | 'SUCCESS' }

License

Licensed under MIT.

0.5.0

2 years ago

0.6.0

2 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago