0.0.8 • Published 2 years ago

jurnal-client v0.0.8

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

jurnal-client

An API wrapper for Jurnal's API.

Installation

  1. Install the package via npm
    npm install --save jurnal-client
  2. Import the package
    const JurnalClient = require('jurnal-client');
  3. Define the client keys
    let jurnalKeyData = {
        _apiKey: '<YOUR_API_KEY>',
        _accessToken: '<YOUR_ACCESS_TOKEN>',
    };
  4. Use the method that you need (see below for more details)

    import {ProductCategoryGetAll} from 'jurnal-client';
    
    try {
        const res = await ProductCategoryGetAll(jurnalKeyData);
        console.log(res);
    } catch (err) {
        console.log(err);
    }
0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago