0.0.8 • Published 1 year ago

jurnal-client v0.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year 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

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago