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

esf-dbi-bsc

v0.2.4

Published

ESF Basic DB Interface

Downloads

7

Readme

ESF DBIBsc Module

Prerequisites

  1. OrientDB should be installed
  2. At least test database of plocal storage type should be created, if not exist. For example:
bash {ORIENTDB_HOME}/bin/console.sh
create database plocal:{ORIENTDB_DEFAULT_DBS_HOME}/esfe
disconnect

curly braces should be replaced with according local installation values. The default user/password for a newly created DB is admin/admin accordingly. 3. In tst/d/esfapp.cfg strings "{USER}", "{PASSWORD}" should be replaced with appropriate credentials.

Road map

Version | Functionality | Status ------- | ----------------------------------------------------------------------------------------------------- | -------- 0.1.0 | Basic single class ops. (req. esf-dbi-bsc-0.1, esf-dbi-bsc-0.2) | released 0.2.0 | FS archiving (req. esf-dbi-bsc-0.4) | released 0.3.0 | Batch ops (req. esf-dbi-bsc-0.5) | 0.4.0 | Record inserting (req. esf-dbi-bsc-0.3) | 0.5.0 | FS restoring (req. esf-dbi-bsc-0.6) | 0.6.0 | DB archiving (req. esf-dbi-bsc-0.7) | 0.7.0 | DB restoring (req. esf-dbi-bsc-0.8) | 1.0.0 | API v.1.0 (req. esf-dbi-bsc-0.3) | _

Requirements

V. 1.0

ReqId | Requirement | Implementation Methods ----------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ esf-dbi-bsc-0.1 | It should implement Graph API | esf-dbi-bsc-0.1.1 | Every class should extend V or Basic | esf-dbi-bsc-0.2 | It run basic db operations: creating class from JS object, checking class existence, removing class | createClassIfNotExists, classExists, createClass esf-dbi-bsc-0.3 | There should be a method to insert data to class | insertRecords esf-dbi-bsc-0.3.1 | The method should accept either a recordData, or an array of recordData | esf-dbi-bsc-0.4 | It should archive class to JSON file before dropping | archiveClass, dropClass esf-dbi-bsc-0.5 | It run batch db operations: class creation, droppig, archiving | archiveClasses, dropClasses, createClasses esf-dbi-bsc-0.6 | It should restore archived class from JSON file | restoreClass esf-dbi-bsc-0.7 | It should archive class to DB file before dropping | archiveClass esf-dbi-bsc-0.8 | It should restore class from DB | restoreClass itms-prc-psr-1.0 | It implement API v.1.0 | _

API v.1.0

object  db
Promise init(object cfg)
// single class operations
Promise createClassIfNotExists(object classData)
Promise classExists(string name)
Promise createClass(object classData)
Promise insertRecords(array records | object recordData)
Promise restoreClass(@rid archiveId)                     //archiveId is an archive fileName or @rid for FS and DB storage type respectively
Promise archiveClass(string name, string transactionId)  //transactionId defines version and optionally storage type: FS or DB
Promise dropClass(string name)
Promise truncateClass(string name)
// batch operations
Promise archiveClasses(array classNames)
Promise dropClasses(array classNames)
Promise createClasses(array data)

© MIT bondden 2009-2015