1.0.10 • Published 2 years ago

usermanual-api v1.0.10

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

UserManual Node.js

Node.js wrapper for the UserManual API

Installation

Install the package with:

npm install --save usermanual-api

or

yarn add usermanual-api

Usage

Table of Contents

Import

In JavaScript

const { UserManual } = require('usermanual-api')

In TypeScript

import { UserManual } from 'usermanual-api';

Authentication

Get the API key for your project from your UserManual Dashboard → Settings → API Keys.

const usermanual = new UserManual({
  apiKey: 'YOUR API KEY',
});

Usages with TypeScript

import { UserManual } from 'usermanual-api';
const usermanual = new UserManual({
  apiKey: 'YOUR API KEY'
});

const getDocument = async () => {
  const document = await usermanual.getPDFDocument('55d18942-75c9-4ac6-b9eb-055b107ffa36');
};
getDocument();

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/usermanual-com/usermanual-node.

License

The repository is available as open source under the terms of the MIT License.

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago