New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

harper-manager

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

harper-manager

Unofficial node-js module for managing harperdb database

latest
Source
npmnpm
Version
1.0.11
Version published
Weekly downloads
5
400%
Maintainers
1
Weekly downloads
 
Created
Source

Harper Manager

Unofficial node-js module to manage your haperdb database in a simplified way.

Usage

Using Harper Manager is very easy,

install the package using

npm install harper-manager or

yarn add harper-manager.

require it in your app , and instantiate it using new keyword,


var { HarperManager }=require("harper-manager");

or 
// ES6 import
import { HarperManager } from "harper-manager";

var options={
   host:process.env.db_host,  /* your host url, ex: http://localhost:9925 or https://xxxxxx.harperdbcloud.com */,
   key:process.env.db_key,  // your Basic auth token,
   
       //schema is optional, but if you include it
    // HarperManager will create it for you if it doesn't exist yet.

   schema: "pets"
}
var myDB = new HarperManager(options);


Now you can start using it to perform every operation.


myDB.createSchema("pets") ;

myDB.createTable({schema:"pets",table:"cats"}) ;

myDB.insert({schema:"pets",table:"cats",records:[{id:1,dog_name:"smiley",age:3}]})

what you can do with HarperManager

  • get the structure of your database using the .describeDB() method.
  • create schema using the .createSchema(schema) method.
  • drop schema using the .dropSchema(schema) method.
  • describe schema using the .describeSchema(schema) method.
  • create table using the .createTable(options) method.
  • drop table using the .dropTable(options) method.
  • describe table using the .describeTable(options) method.
  • insert data using the .insert(options) method.
  • upsert data using the .upsert(options) method.
  • update data using the .update(options) method.
  • delete data using the .delete(options) method.
  • search by hash using the .searchByHash(options) method.
  • search by value using the .searchByValue(options) method.
  • search by conditions using the .searchByConditions(options) method.
  • upload data using .csvUrlLoad(options) method.

What you should know about HarperManager.

HarperManager is not an extension to harperdb, you can only perform operations that are available by Harperdb.

  • Every method returns a Promise, this means you will need to use .then() and .catch() to get the response or errors.
  • the methods that requires options must be passed in as an Object {}.
  • you can insert data into a table not yet created, HarperManager will automatically create the table and insert the data for you.

Available methods and their options.

To better understand HarperManager's options, you should refer to the harperdb docs page.

  • method:describeDB() | param: none.

  • method: createSchema() | param : Type- string the name of the schema you want to create.

  • method: dropSchema() | param : Type- string the name of the schema you want to drop.

  • method: describeSchema() | param : Type- string the name of the schema you want to describe.

  • method: createTable() | options : Type- Object

    • schema: required ,
    • table: required
    • hashAttribute: required (if not specified, will default to id).
  • method: dropTable() | options : Type- Object

    • schema: required,
    • table: required.
  • method: describeTable() | options : Type- Object

    • schema: required,
    • table: required.
  • method: insert() | options : Type- Object

    • schema: required
    • table: required
    • records: required `
  • method: delete() | options : Type- Object

    • schema: required,
    • table: required,
    • hashValues: required.
  • method: update() | options : Type- Object

    • schema: required,
    • table: required,
    • records: required.
  • method: upsert() | options : Type- Object

    • schema: required,
    • table: required,
    • records: required.
  • method: searchByHash() | options: Type- Object

    • schema:required,
    • table: required,
    • hashValues:required,
    • getAttributes: required (if not specified, will default to wildcard `["*"]``).
  • method: searchByValue() | options: Type- Object

    • schema:required,
    • table: required,
    • searchValue:required,
    • searchAttribute:required,
    • getAttributes: required (if not specified, will default to wildcard ["*"]).
  • method: searchByConditions() | options: Type- Object

    • schema:required,
    • table: required,
    • operator: optional (will default to "and")
    • offset:optional (will default to 0),
    • limit:optional (will default to null),
    • getAttributes: required (if not specified, will default to wildcard ["*"]);
  • method: csvUrlLoad() | options : Type- Object

    • schema: required,
    • table: required,
    • csvUrl: required.

Keywords

harperdb

FAQs

Package last updated on 03 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts