npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@piiano/vault-client

v1.0.32

Published

Piiano Vault generated typescript client

Downloads

3,709

Readme

@piiano/vault-client

This is a TypeScript client to connect to a Piiano Vault. It provides an easy-to-use API for accessing the various resources exposed by the Vault REST API.

Note:

This package is compatible with Vault version 1.11.1. For a Vault client compatible with other versions of Vault, check other versions of this package.

Installation

To install the package using npm:

npm install @piiano/vault-client

To install the package using yarn:

yarn add @piiano/vault-client

Usage

To use the VaultClient class, first import it into your project:

const { VaultClient } = require('@piiano/vault-client');

Or if you are using TypeScript:

import { VaultClient } from '@piiano/vault-client';

Then create a new instance of the client:

const client = new VaultClient({
  vaultURL: 'https://vault.example.com:8123',
  apiKey: 'vaultApiKey',
});

ℹ️ Note that the VaultClient options have default values for the vaultURL and apiKey properties.
These match the defaults of a local Vault installation in development mode.

const defaultOptions = {
  vaultURL: "http://localhost:8123",
  apiKey: "pvaultauth",
}

Usage Example

To get the version of the running Vault:

const version = await this.vaultClient.system.getVaultVersion();
console.log(version);

Expected output:

{
  vault_id: '165147695309533184',
  vault_version: '1.2.2.4420853466-g3a086a1',
  db_schema_version: 20230314205727
}

Development

To build and test the project:

yarn
yarn build
yarn test

API

The VaultClient class includes members for the following specific API categories:


const vaultClient = new VaultClient();

vaultClient.collections // client for working with collections
vaultClient.collectionProperties // client for working with collection properties
vaultClient.objects // client for working with objects
vaultClient.crypto // client for working with crypto operations
vaultClient.tokens // client for working with tokens
vaultClient.system // client for working with system operations
vaultClient.iam // client for working with IAM
vaultClient.configVars // client for working with config vars
vaultClient.dataTypes // client for working with data types
vaultClient.bundles // client for working with bundles

These correspond to the various resources exposed by the Piiano Vault REST API. Each member provides methods for interacting with the corresponding resource.

VaultClient.collections

This Piiano Vault resource enables you to create, retrieve, update, and delete the collections that hold sensitive data.

  • VaultClient.collections.listCollections()
  • VaultClient.collections.addCollection()
  • VaultClient.collections.getCollection()
  • VaultClient.collections.updateCollection()
  • VaultClient.collections.deleteCollection()

VaultClient.collectionProperties

description: This Piiano Vault resource enables you to create, retrieve, list, update, and delete the collection properties that define the stored data values.

  • VaultClient.collectionProperties.listCollectionProperties()
  • VaultClient.collectionProperties.addCollectionProperty()
  • VaultClient.collectionProperties.getCollectionProperty()
  • VaultClient.collectionProperties.updateCollectionProperty()
  • VaultClient.collectionProperties.deleteCollectionProperty()

VaultClient.bundles

This beta Piiano Vault resource enables you to create, retrieve, list, update, and delete bundles that export functions used by custom data types.

  • VaultClient.bundles.listBundles()
  • VaultClient.bundles.addBundle()
  • VaultClient.bundles.getBundle()
  • VaultClient.bundles.updateBundle()
  • VaultClient.bundles.deleteBundle()

VaultClient.dataTypes

This beta Piiano Vault resource enables you to create, retrieve, list, and delete data types that can be used as property types.

  • VaultClient.dataTypes.listDataTypes()
  • VaultClient.dataTypes.addDataType()
  • VaultClient.dataTypes.getDataType()
  • VaultClient.dataTypes.deleteDataType()

VaultClient.objects

This Piiano Vault resource enables you to create, retrieve, search, update, and delete collection objects and their data.

  • VaultClient.objects.listObjects()
  • VaultClient.objects.addObject()
  • VaultClient.objects.getObjectById()
  • VaultClient.objects.updateObjectById()
  • VaultClient.objects.deleteObjectById()
  • VaultClient.objects.addObjects()
  • VaultClient.objects.updateObjects()
  • VaultClient.objects.deleteObjects()
  • VaultClient.objects.searchObjects()

VaultClient.crypto

This beta Piiano Vault resource enables you to encrypt, decrypt, and update encrypted blobs.

  • VaultClient.crypto.encrypt()
  • VaultClient.crypto.updateEncrypted()
  • VaultClient.crypto.decrypt()
  • VaultClient.crypto.hashObjects()

VaultClient.tokens

This Piiano Vault resource enables you to tokenize, detokenize, update, rotate, search, and delete tokens.

  • VaultClient.tokens.tokenize()
  • VaultClient.tokens.detokenize()
  • VaultClient.tokens.deleteTokens()
  • VaultClient.tokens.updateTokens()
  • VaultClient.tokens.rotateTokens()
  • VaultClient.tokens.searchTokens()

VaultClient.iam

This Piiano Vault resource enables you to set and retrieve the IAM configuration and regenerate user API keys.

  • VaultClient.iam.getIamConf()
  • VaultClient.iam.setIamConf()
  • VaultClient.iam.regenerateUserApiKey()

VaultClient.configVars

This Piiano Vault resource enables you to set and retrieve the dynamic configuration variables that control the behavior of your Vault.

  • VaultClient.configVars.clearAllConfVars()
  • VaultClient.configVars.getConfVar()
  • VaultClient.configVars.setConfVar()

VaultClient.system

This Piiano Vault resource enables you to retrieve details about the status of system components and the Vault version.

  • VaultClient.system.dataHealth()
  • VaultClient.system.controlHealth()
  • VaultClient.system.getClusterInfo()
  • VaultClient.system.garbageCollection()
  • VaultClient.system.triggerError()
  • VaultClient.system.getConfiguration()
  • VaultClient.system.getLicense()
  • VaultClient.system.getVaultVersion()
  • VaultClient.system.rotateKeys()
  • VaultClient.system.getKms()

License

This package is licensed under the MIT License. See the LICENSE file for more information.