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

klicktipp-api

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

klicktipp-api

A node translation of php Wrapper of the klicktipp API.

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

klicktipp-api

A node translation of php Wrapper of the klicktipp API.

Please see the documentation of the offical PHP version For more Information,.

Install

npm i klicktipp-api

Usage

const KlicktippConnector = require("klicktipp-connector");

const test = async () => {
  const klicktippConnector = new KlicktippConnector();

  // Replace with username  && password
  const username = "username";
  const password = "password";

  console.log("login", await klicktippConnector.login(username, password));
  // do some stuff here for example
  const tags = await klicktippConnector.tagIndex();
  if (tags) {
    console.log("tags:", tags);
  } else {
    console.log("error:", klicktippConnector.getLastError());
  }
  console.log("logout", await klicktippConnector.logout());
};

test();

For more Information, see the documentation of the offical PHP version.

Keywords

klicktipp

FAQs

Package last updated on 10 Aug 2021

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