Socket
Socket
Sign inDemoInstall

@teknologi-umum/vault

Package Overview
Dependencies
2
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @teknologi-umum/vault

Hashicorp Vault SDK for Node.js


Version published
Weekly downloads
2
Maintainers
2
Created
Weekly downloads
 

Readme

Source

Hashicorp Vault Client for Node.js

Third party client library to connect to Hashicorp Vault. This library aims to mimic some of more proper Vault SDK like official Go SDK.

Features implemented:

  • Secrets Engine
    • K/V Version 1
    • K/V Version 2
    • SSH
    • TOTP
  • Auth Method
    • AppRole
    • AWS
    • Azure
    • Github
    • JWT/OIDC
    • Kubernetes
    • LDAP
    • TLS Certificates
    • Tokens
    • Username & Password

You can help extending the features by contributing to the repository.

Example

import {VaultClient} from "@teknologi-umum/vault";

const client = new VaultClient({address: process.env.VAULT_ADDRESS ?? "http://localhost:8200/"});

const userPassAuth = client.userPassAuth("annedoe", "very strong password");
const vaultToken = await userPassAuth.login();

// Apply the acquired token against the original client class.
client.setToken(vaultToken);

// Create a KVv2 secret engine client using the "kv2" mount.
const kv = client.kvv2("kv2");

await kv.put("hello", {value: "world"});
const firstSecret = await kv.get("hello"); // firstSecret.data returns '{ value: "world" }'


await kv.patch("hello", {secondValue: "foobar"});

await kv.delete("hello");

License

The MIT License (MIT)

Copyright (c) 2023 Teknologi Umum

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

See LICENSE

Keywords

FAQs

Last updated on 09 Jul 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc