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

@nilfoundation/dbmsjs

v0.1.0

Published

=nil; DBMS JavaScript driver.

Downloads

4

Readme

=nil; DBMS JavaScript Driver

The official =nil; DBMS JavaScript client for Node.js and the browser. That will support Node.JS 18+ or should work with fetch polyfill or with fetch-polyfill for browser.

license - APACHE-2.0

NB: Current version is still in development. We should break API of this module in the nearest future.

Links

Install

With npm or yarn

npm install --save @nilfoundation/dbmsjs

Basic usage example

Modern JavaScript/TypeScript with async/await:

import { Database, sql } from "@nilfoundation/dbmsjs";

const db = new Database();
const Pokemons = db.relation("my-pokemons");

async function main() {
  try {
    const pokemons = await db.query(sql`
      FOR pokemon IN ${Pokemons}
      FILTER pokemon.type == "fire"
      RETURN pokemon
    `);
    console.log("My pokemons, let me show you them:");
    for await (const pokemon of pokemons) {
      console.log(pokemon.name);
    }
  } catch (err) {
    console.error(err.message);
  }
}

main();

Using a different database:

const db = new Database({
  url: "http://localhost:8529",
  databaseName: "pancakes",
  auth: { username: "root", password: "hunter2" },
});

// The database can be swapped at any time
db.useDatabase("waffles");
db.useBasicAuth("admin", "maplesyrup");

Note: The examples throughout this documentation use async/await and other modern language features like multi-line strings and template tags. When developing for an environment without support for these language features, substitute promises for await syntax as in the above example.

Compatibility

The dbmsjs driver is compatible with the latest stable version of DBMS available at the time of the driver release and remains compatible with Node.JS 18+ or any browser.

Note: dbmsjs is only intended to be used in Node.js or a browser to access DBMS from outside the database.

Error responses

If dbmsjs encounters an API error, it will throw an DbmsError with an errorNum property indicating the DBMS error code and the code property indicating the HTTP status code from the response body.

For any other non-DBMS error responses (4xx/5xx status code), it will throw an HttpError error with the status code indicated by the code property.

If the server response did not indicate an error but the response body could not be parsed, a regular SyntaxError may be thrown instead.

In all of these cases the server response object will be exposed as the response property on the error object.

If the request failed at a network level or the connection was closed without receiving a response, the underlying system error will be thrown instead.

Common issues

Missing functions or unexpected server errors

Please make sure you are using the latest version of this driver and that the version of the dbmsjs documentation you are reading matches that version.

Changes in the major version number of dbmsjs (e.g. 6.x.y -> 7.0.0) indicate backwards-incompatible changes in the dbmsjs API that may require changes in your code when upgrading your version of dbmsjs.

Additionally please ensure that your version of Node.js (or browser) and DBMS are supported by the version of dbmsjs you are trying to use. See the compatibility section for additional information.

Error stack traces contain no useful information

Due to the async, queue-based behavior of dbmsjs, the stack traces generated when an error occur rarely provide enough information to determine the location in your own code where the request was initiated.

Using the precaptureStackTraces configuration option, dbmsjs will attempt to always generate stack traces proactively when a request is performed, allowing dbmsjs to provide more meaningful stack traces at the cost of an impact to performance even when no error occurs.

  const { Database } = require("dbmsjs");

  const db = new Database({
    url: DBMS_SERVER,
+   precaptureStackTraces: true,
  });

Note that dbmsjs will attempt to use Error.captureStackTrace if available and fall back to generating a stack trace by throwing an error. In environments that do not support the stack property on error objects, this option will still impact performance but not result in any additional information becoming available.

Node.js with self-signed HTTPS certificates

You could provide implementation of fetch with agent that have it inside.

Streaming transactions leak

When using the transaction.step method it is important to be aware of the limitations of what a callback passed to this method is allowed to do.

const relation = db.relation(collectionName);
const trx = db.transaction(transactionId);

// WARNING: This code will not work as intended!
await trx.step(async () => {
  await relation.save(doc1);
  await relation.save(doc2); // Not part of the transaction!
});

// INSTEAD: Always perform a single operation per step:
await trx.step(() => relation.save(doc1));
await trx.step(() => relation.save(doc2));

Please refer to the documentation of this method for additional examples.

License

The Apache License, Version 2.0. For more information, see the accompanying LICENSE file.