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

kubot-dal

v1.1.63

Published

Data access layer for kubot related projects

Downloads

11

Readme

Data access layer for kubot

Purpose

Just an experiment to toy a bit with packaging and tooling. This is a library containing types to be persisted on a mongodb database and their related manipulation components.

Environment

  • Targeted for node.js.
  • Typescript superset for coding.

Version history

  • 1.0.0 : Naive implementation relying on gulp for project tasking (concat / build / package.json moving).
  • 1.1.0 : Using Webpack to do proper bundling for server side code (node.js).
  • 1.1.1 : Changing persisted types to typescript interfaces.
  • 1.1.2 : Readme issues.
  • 1.1.3 : Unordered list for versions history (readme).
  • 1.1.4 : Replacing interfaces by classes: was causing issues while consuming the package (interfaces somehow not recognized despite being in typescript declaration files).
  • 1.1.41 : Typo in readme.
  • 1.1.5 : Using basic deploy - one file per module.
  • 1.1.6 : Adding a configuration component to manage mongodb instance url and targeted database.
  • 1.1.7 : Namespace PersistedTypes renamed to Types.
  • 1.1.42 : Derped version; Will have to make it expand from v1.1.42 from now on.
  • 1.1.43 : Adding command prefix to guild configuration type.
  • 1.1.44 : Updating mongodb and using new parser for connect.
  • 1.1.45 : Fixing GenericStore.createOrUpdate (behavior change for findOneAndUpdate).
  • 1.1.46 : Adding activityNoticeMessages property to the GuildConfiguration type.
  • 1.1.47: Adding showPlayers to the WatchedRegion type.
  • 1.1.48: Adding storate related with configuration website (Sessions).
  • 1.1.49: Adding sessions manipulation class to Manipulation exports.
  • 1.1.50: Publish error.
  • 1.1.51: Sessions store get should return only one session.
  • 1.1.52: Fixing issue in sessions store (login, not guildId).
  • 1.1.53: Fixing some functions in the generic store not returning the operation result.
  • 1.1.54: Adding a store for star systems.
  • 1.1.55: Adding the nickname, posx and posy properties to the star systems model.
  • 1.1.56: Adding roles to users sessions.
  • 1.1.57: Using bcrypt to hash passwords before storing them. Removing the token property from the session type (useless).
  • 1.1.58: Adding a generation date property to the session type.
  • 1.1.59: Setting generation date on session creation.
  • 1.1.60: About time to handle mongodb simple authentication.
  • 1.1.61: Unifying connection logic.
  • 1.1.62: Improving configuration logic.
  • 1.1.63: We should properly await disconnection.