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

lishy

v0.1.33

Published

A MongoDB transaction monitoring system with entity historisation

Downloads

14

Readme

Lishy

An Express / Kafka / MongoDB framework for transactional processing of logic with full historisation of actions and data.

What is it?

Lish is a framework to organise your business logic into Typescript service classes. When an action is triggered, lish calls the code and records what has been changed.

Lish has adapters for HTTP / Express and for the Apache Kafke messaging system. Upon request, lish performs data validation and handles all exceptions that may occur during the

Features

  • Typescript class system for business logic and persistent data
  • Data Validation (via JSON schema and the class-validator framework)
  • Transactional handling of the MongoDB documents with rollback on errors
  • Historisation of all documents, enabling change tracking
  • Backdated excution of logic in a time-machine (as data looked like at a particular time in the past)
  • Fail-safe adapter to Express, making sure errors are correctly reported to the client
  • ... many more

Quick start

Create your input and output message classes

This is the supposed input data, required for a service:

export class MyInputData {
   @LishProperty(String, true)
   requiredId: string;
   
   @LishProperty(Number)
   optionalValue: number;
}

And here the MongoDB document that will be produced:

@LishEntity()
export class MyInputData extends LishEntity {
   @LishProperty(Number) @Max(1000)
   amount: number;
}
@LishService({ 
export class MyTrigger<MyInputData, Boolean> extends LishService {

   async run(lish: LishCtx<MyInputData>): Promise<Boolean> {
      // our data is provided as 'msg'; it is validated and type-safe 
      const value = lish.msg.optionalValue || 10;
      const id = lish.msg.requiredId;
      
      // get or create a document identified by our id and change it 
      const item = lish.DB(MyInputData).findOrCreateById(id);
      item.amount += value;
      
      // return - 'item' will automatically be updated in Mongo
      return true;
   }

}