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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ddbw

v1.4.0

Published

The official Da-xn Database Workspace NPM package.

Readme

What is Da-xn Database Workspace [DDBW]?

Da-xn Database Workspace or DDBW for short is a brand new database system designed for simplicity as well as power and speed making it a great alternative for already existing database systems. We also even provide 24/7 support in our Discord Server!

How do I install DDBW?

Simply run the following NPM command:

npm install ddbw

And you are all set to use DDBW in all of your NodeJS applications!

What now?

Copy the code below and it will be explained.

const ddbw = require("DDBW");

ddbw.init();
ddbw.newDatabase("myDatabase");

var connection = new ddbw.Connection("myDatabase");

connection.newCollection("myCollection");

connection.createDoc("myCollection", "myDocument1", {
    name: "Da-xn",
    height: 6,
    age: 100,
});
  • The first line is just adding all of the functions to the file so you can use the functions down below such as ddbw.init();

  • ddbw.init(); This function will make DDBW add all of the required folders and files to store your data.

  • ddbw.newDatabase(String dbName); This function will create a database which will store different collections of data.

  • new ddbw.Connection(String dbName); This class will make a connection to the database so you will be able to insert collections into that database as well as documents for them collections.

  • connection.newCollection(String collectionName); This function will create a new collection which will store documents. For example a collection could be users, blog posts, courses etc.

  • connectionn.createDoc(String collectionName, String documentName); This function will create a new document which will contain key value pairs. Such as for a user document it could contain a username and a password. You can put anything you desire in the document key value pairs.

So... Pretty simple so far?

If you ever get stuck or want to learn more about the updates coming to DDBW or just have a chat then please do join our Discord Server. For more function and class references please make sure to check out the DDBW documentation here!

Latest Updates

v1.4.0:

  • Added findDoc() function to find documents by searching documents for where the key and value matches
  • Fixed some small bugs
  • Made more of the functions asynchronous

You can also check out the discord server for when updates drop as we will post the new versions and features as soon as we release them to you.