0.1.0 • Published 3 months ago

localkv v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

LocalKV

LocalKV is a simple, type-safe key-value data store to pass data or context between different parts of your application without propagating it through the whole application.

Installation

$ npm install local-kv

Usage

Example with Express web server

import { randomUUID } from 'node:crypto';
import express from 'express';
import { KV } from 'local-kv';

const app = express();

// create a new instance of KV
const kv = new KV();

// middleware to generate a new request id
app.use((req, res, next) => {
  // generate new id for each request
  const id = randomUUID();

  console.log(`Request ID Generated: ${id}`);
  // ^ "Request ID Generated: e4ce829d-7f67-453a-bc5a-a9db8e4edeef"

  // create a new context for this request
  kv.with(() => {
    // set the request-id key to the generated id in this context
    kv.set('request-id', id);

    // execute the next middleware.
    next();
  });
});

app.get('/', (req, res) => {
  // get the request-id from the context. Correct data will be automatically available without passing it through the whole application or mutating the request object.
  const id = kv.get('request-id');

  // send the id as response
  res.json({ id });
});

app.listen(3000, () => {
  console.log('Server is running on port 3000');
});

Testing

$ curl http://localhost:3000
# {"id":"e4ce829d-7f67-453a-bc5a-a9db8e4edeef"}