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

harperdb-connect

v1.3.0

Published

Node.JS module for connecting to HarperDB and simplifying HTTP requests.

Downloads

7

Readme

HarperDB Connect

Build Status Coverage Status

https://nodei.co/npm/harperdb-connect.png?downloads=true&downloadRank=true&stars=true

Developed by Ethan Arrowood

This API is to be used with HarperDB Community Edition

API Reference

module.exports

.HarperDBConnect([username], [password], [url])

Parameters:

  • username (String): Nonempty database authorization username string. Optional
  • password (String): Nonempty database authorization password string. Optional
  • url (String):
    • Nonempty database endpoint. Make sure to include port number. username and password must be defined if url is defined. Optional
    • By providing the url, the constructor then returns a Promise . If succesfully connected it resolves with a reference to the new HarperDBConnect instance; otherwise, it rejects the Error string from connect.

Example:

Instantiate HarperDBConnect with username and password:

const db = new HarperDBConnect('admin', 'Password123!')

Instantiate HarperDBConnect with username, password, and url. Remember that by providing the url, the constructor returns a Promise instead:

const connectToDB = async () => {
    let db;
    try {
        db = await new HarperDBConnect('admin', 'Password123!', 'http://localhost:5000')
    } catch (err) {
        console.log(`Error: ${err}`)
    }
}

Discussion:

HarperDBConnect has some internal properties that are defined during instantiation. isConnected is instantiated false and then toggled true when the database succesfully connects to the database endpoint via the connect method. authorization is a Base64 encoded string generated by combining the username and password in the setAuthorization method. options is instantiated as an empty object; if url is provided, options.url is set if the connection is verified.

HarperDBConnect

.setAuthorization(username, password)

Returns the generated auth string and sets the auth to the options object under headers.authorization.

Parameters:

  • username (String): Nonempty database authorization username string. Optional
  • password (String): Nonempty database authorization password string. Optional

Example:

const authToken = db.setAuthorization('admin', 'Password123!')

Discussion:

This method is used internally by the constructor. You may also call it if for some reason your authorization settings change. This does not make a call to connect so if you do use this method make sure to call connect afterwards.

.setDefaultOptions([options])

Set your default options for the request method to use. This is useful for settings such as method, json, headers.content-type.

Parameters:

  • options (Object): options to be merged and set as default

Example:

db.setDefaultOptions({
  method: 'POST',
  headers: {
    'content-type': 'application/json'
  },
  json: true
})

.connect([url])

Attempts to connect to the HarperDB Database. Returns a promise and will set the url on the default options if successful.

Parameters:

  • url (String): string denoting URL at which HarperDB instance is on.

Example:

db.connect('http://localhost:5000')
  .then(() => console.log('Connected!'))
  .catch(err => console.log(err))

Discussion:

This method is used internally if you attempt to connect via the constructor.

.request([queryOrOptions], [useDefault])

Use this method to make requests against the HarperDB instance. It will use the default options by default. Returns a promise resolving the response from the database.

Parameters:

  • queryOrOptions (Object): if you are using the default options you only need to pass the database query; otherwise, you must pass the entire request object and put your query in the body property.
  • useDefault (boolean): Default true. If false you must pass options object as first parameter.

Example:

Using defaults

db.request({ operation: "describe_all" })
  .then(res => console.log(res))
  .catch(err => console.error(err))

Without defaults

const db = new HarperDBConnect('admin', 'Password123!', 'http://localhost:5000')
db.request({
    method: 'POST',
    url: db.options.url,
    headers: {
      'content-type': 'application/json',
      authorization: db.authorization,
    },
    json: true,
    body: { operation: 'describe_all' },
  })
  .then(res => console.log(res))
  .catch(err => console.error(err))

Discussion:

It is recommended you use the default options.