0.17.0 • Published 3 years ago

nuaudit-node-sdk v0.17.0

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

nuaudit. Node.js SDK

Installation

yarn install nuaudit-node-sdk

Usage

import Nuaudit from 'nuaudit-node-sdk';

const nuaudit = new Nuaudit(
    "API_KEY_SECRET",
    "ORGANIZATION_ID",
    "TRAIL_ID"
)

(async () => {
    await nuaudit.createRecord(
        "Added artwork to the gallery.",
        {
            "type": "human",
            "id": "jane",
            "name": "Jane",
            "email": "jane@example.org",
            "ipAddress": "127.0.0.1"
        },
        {
            "type": "artwork",
            "id": "thepainting",
            "title": "The painting",
            "material": "canvas",
            "paint": "oil",
            "year": 2018
        }
    )
)()