New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

autotab

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autotab

The official TypeScript library for the Autotab API

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
1
Created
Source

Autotab Node API Library

This library provides convenient access to the Autotab REST API from TypeScript and Javascript.

It is generated from our OpenAPI specification with openapi-generator.

To learn how to use the Autotab API, check out our API Reference and Documentation.

Installation

npm install autotab --save

Usage

import { Configuration, RunApi } from 'autotab';

const runClient = new RunApi(new Configuration({
    apiKey: process.env['AUTOTAB_API_KEY'],
}));

async function main() {
  const run = await runClient.start({
    runSkillRequest: {
        skillId: "skill_fe517503-384a-45c5-87a3-94f98126e626"
    }
  });
  
  console.log("result:", await runClient.retrieve({
    id: run.id
  }))
}

main();

Keywords

autotab

FAQs

Package last updated on 25 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts