🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

@horus-tech/nodejs-datastore-cache

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@horus-tech/nodejs-datastore-cache

Opinionated NodeJS library for simplified google cloud datastore and cache layer interactions.

latest
Source
npmnpm
Version
1.3.2
Version published
Maintainers
2
Created
Source

NodeJS Datastore Cache library

npm version License

Opinionated NodeJS library for simplified google cloud datastore and cache layer interactions.

The implementation should be similar to the official datastore client go version, because this is the only implementation that actually make sense and can be consistent across languages and frameworks.

Introduction

The library provides a DataClient abstraction to access datastore and/or cached data:

  • Data get calls will set the cache
  • Data set calls will delete the cache
  • Data delete calls will delete the cache

The library can use cache (but does not have to):

  • By default no cache client will be used
  • Redis client is provided by the library
  • Other cache clients can be implemented easily (see redis cache client code for example)

Dependencies

Core dependencies include:

Node version

The library is tested using NodeJS 10.x, 12.x, 14.x, 15.x.

Installation

yarn add @horus-tech/nodejs-datastore-cache

Documentation

The Library documentation should contain everything you need to get started.

Development & Testing

The library requires a Google Cloud datastore and a running redis server to run the unittests.

A docker compose file is provided to simplify this process but those services can eventually be remote or launched "manually".

Datastore emulator & Redis server

docker-compose -f tools/docker-compose.yml up

Run the unittests

yarn test

Contributing

All contributions must be covered by unit tests.

  • Simply use a pull requests
  • Documentation should be updated before submitting the PR using yarn build:docs
  • Package version should be bumped by a maintainer using something like yarn bump major | minor | patch
  • Upon PR merge on master an admin must tag the merge commit using the package version (ex: v1.0.0) to trigger the release and package publish workflows

License

Apache Version 2.0

See LICENSE

FAQs

Package last updated on 01 Jun 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