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

@rairamiro/keyvaluestorefunctionappclient

v1.0.2

Published

Integracao com API de armazenamento de Chaves/Valor do Azure

Downloads

206

Readme

KeyValueClient Readme

Visão Geral

O KeyValueClient é uma biblioteca JavaScript desenvolvida para interagir com uma Azure Function para armazenamento de pares chave-valor. Este cliente simplifica o gerenciamento de chaves e valores, permitindo a busca, inserção e definição de valores padrão quando uma chave não é encontrada.

Funcionalidades

  • Recuperar valores por chave da Azure Function.

  • Inserir automaticamente um valor padrão se uma chave não for encontrada durante a busca.

  • Especificar ou usar uma chave de partição padrão para organizar os pares chave-valor.

  • Configuração flexível da URL base e chaves de partição específicas para diferentes ambientes.

Instalação

Para usar o cliente, instale-o via npm:

npm install key-value-client

Uso

Importação e Inicialização

const KeyValueClient = require('key-value-client');

// Inicialize o cliente com a URL base da Azure Function
const client = new KeyValueClient();

Configuração

O cliente utiliza uma configuração flexível baseada em variáveis de ambiente ou no arquivo config.json:

  • URL Base : Pode ser definida no construtor, em uma variável de ambiente KEYVALUE_API_URL, ou no arquivo config.json.

  • Chave de Partição Padrão : É configurada automaticamente com base no nome da aplicação e na variável de ambiente ENVIRONMENT_NAME.

Métodos

  1. get(rowKey, defaultValue = null, partitionKey) Busca o valor associado à rowKey. Caso a chave não seja encontrada:
  • Se um valor padrão (defaultValue) for fornecido, ele será inserido no armazenamento.

  • Caso contrário, um erro será lançado. Parâmetros :

  • rowKey (string): A chave a ser buscada. (Obrigatório)

  • defaultValue (qualquer): O valor padrão a ser usado se a chave não existir. (Opcional)

  • partitionKey (string): A chave de partição. Por padrão, utiliza o valor configurado automaticamente. Exemplo :

const value = await client.get("exampleKey", "defaultValue");
console.log(value);
  1. set(rowKey, value, partitionKey) Insere ou atualiza um par chave-valor. Parâmetros :
  • rowKey (string): A chave a ser inserida ou atualizada. (Obrigatório)

  • value (qualquer): O valor a ser associado à chave. (Obrigatório)

  • partitionKey (string): A chave de partição. Por padrão, utiliza o valor configurado automaticamente. Exemplo :

await client.set("exampleKey", "exampleValue");

Configuração

Arquivo config.jsonUm arquivo config.json pode ser usado para configurar a URL base e outras opções:

{
  "apiUrl": "https://sua-funcao-azure-url",
  "environmentName": "production"
}

Variáveis de Ambiente

As seguintes variáveis de ambiente podem ser definidas:

  • KEYVALUE_API_URL: Substitui a URL base configurada no config.json.

  • ENVIRONMENT_NAME: Define o ambiente atual (ex.: development, production).

Licença

Este projeto é distribuído sob a licença MIT.