Socket
Book a DemoInstallSign in
Socket

@ping-identity/p14c-js-sdk-core

Package Overview
Dependencies
Maintainers
6
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ping-identity/p14c-js-sdk-core

The library consists of multiple parts that are usable on its own and together: - helper class to work with fetch methods; - logger methods.

1.0.0-pre.2
latest
Source
npmnpm
Version published
Maintainers
6
Created
Source

Core Module of PingOne SDK for JavaScript

The library consists of multiple parts that are usable on its own and together:

  • helper class to work with fetch methods;
  • logger methods.

#NOTE: THIS REPOSITORY IS IN A TESTING MODE AND IS NOT READY FOR PRODUCTION !!!

Content

  • Installation
  • Http API Reference
  • Logger API Reference

Installation

To install all parts as one @ping-identity/p14c-js-sdk-core you can run these commands in your project root folder:

# yarn
yarn install @ping-identity/p14c-js-sdk-core

or

# npm
npm install --save @ping-identity/p14c-js-sdk-core

Adding the --save parameters will update the package.json file with instructions on what should be installed, so you can simply call npm install without any parameters to recreate this folder later.

To install some specific part please run these commands in your project root folder:

# yarn
yarn install @ping-identity/pingone-js-sdk-fetch
yarn install @ping-identity/pingone-js-sdk-logger

or

# npm
npm install --save @ping-identity/pingone-js-sdk-fetch
npm install --save @ping-identity/pingone-js-sdk-logger

Http API Reference

General class to work with fetch methods based on cross-fetch universal WHATWG Fetch API for Node, Browsers and React Native.

const {Http} = require("@ping-identity/p14c-js-sdk-core");
const fetch = new Http();
const  response = await fetch.getJson("https://someUrl", {accessToken: "accessTokenValue"})
MethodDescription
fetch (uri, request)The basic rest method that is used in all methods below. Sets Bearer Authorization header if accessToken is present in request
delete (uri, request)Call the delete method on requested uri
json (uri, request)Execute defined request with Accept: "application/json" header
getJson (uri, request)Execute json (uri, request) with GET method
post (uri, request)Execute fetch (uri, request) with POST method
postJson (uri, request)Execute json (uri, request) with POST method
patchJson (uri, request)Execute json (uri, request) with PATCH method
putJson (uri, request)Execute json (uri, request) with PUT method
put (uri, request)Execute fetch (uri, request) with PUT method

Logger API Reference

A flexible abstraction over using console log.

const {logger} = require("@ping-identity/p14c-js-sdk-core");
logger.info("Something has happened.");
logger.warn("Something bad has happened.");
logger.debug("Something has happened with such details.");
logger.error("Something really bad has happened.");

Keywords

pingidentity

FAQs

Package last updated on 02 Mar 2022

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.