autoinspector
TypeScript icon, indicating that this package has built-in type declarations

2.7.0 • Public • Published

Autoinspector Node.js SDK

The Autoinspector Node library provides convenient access to the Autoinspector API from applications written in server-side JavaScript.

Installation

npm install autoinspector
#or
yarn add autoinspector

Usage

The package needs to be configured with your company api key, which is available in the Autoinspector Dashboard. Require it passing the token at the moment of instantiate Autoinspector class.

const Autoinspector = require('autoinspector').default

const autoinspector = new Autoinspector({
    apikey:"YOUR_API_KEY"
})

autoinspector.inspections.car.create({...})
.then((res) => {
    console.log("inspection created!", res.inspectionId)
})
.catch((err) => console.error(err))

Or using ES modules and async/await:

import Autoinspector from 'autoinspector'

const autoinspector = new Autoinspector({
    apikey:"YOUR_API_KEY"
})

(async () => {

try {

const inspection = await autoinspector.inspections.car.create({...})

console.log(inspection._id)

} catch (err) {

  console.error(err)

}

})()

Usage with Typescript

All the types are included in the module, so if you install it using typescript you automatically have access to all the interfaces used by Autoinspector SDK.

Configuration

Initialize with config object

The package can be initialized with two options:

import Autoinspector from 'autoinspector';

const autoinspector = new Autoinspector({
  apikey: 'YOUR_API_KEY',
  timeout: 1000,
});
Option Default Description
apikey null token for authentication that belongs to specific company
timeout 80000 Maximum time each request can take in ms.

Package Sidebar

Install

npm i autoinspector

Weekly Downloads

136

Version

2.7.0

License

MIT

Unpacked Size

98.1 kB

Total Files

101

Last publish

Collaborators

  • lcnlvrz