Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pakt-sdk

Package Overview
Dependencies
Maintainers
5
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pakt-sdk

The PAKT SDK is an advanced software development kit, purpose-built for web applications, that empowers developers to construct innovative products on the PAKT Operating System.

  • 0.1.41
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

Alt PAKT

PAKT

Npm package version Npm package monthly downloads Latest release Npm package license

PAKT SDK is a modern software development kit, built for NodeJs.

Installation

To install PAKT SDK, simply

npm install pakt-sdk

yarn add pakt-sdk

:warning: Ensure you are registered on www.pakt.world, with a paid and activated chainsite.

Initialization

See below the code block for initialization

//Typescript
import PaktSDK from "pakt-sdk";

const apiKey = config.PAKT_SDK_API_KEY;
const configData: PaktConfig = {
  token: apiKey,
  verbose: true,
};

const sdkInit = await PaktSDK.init(configData);
//Javascript
const PaktSDK = require("pakt-sdk");

const apiKey = config.PAKT_SDK_API_KEY;
const configData = {
  token: apiKey,
  verbose: true,
};
const sdkInit = await PaktSDK.init(configData);

The above code initializes the PAKT SDK and ensures the API KEY is generated on www.pakt.world.


If you want to learn how to use the PAKT SDK, visit this link for the documentation & guide.

Example

Explore our example project which effectively demonstrates the practical application of our SDK: Sample Project

Keywords

FAQs

Package last updated on 05 Dec 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc