0.6.0 • Published 7 years ago

rocketdb v0.6.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

RocketDB

RocketDB is a simple and dependency-free NPM module for easy storage and querying of your data. If you have a small database for a simple nodejs app, this is the module for your needs. Much faster than the competition, it does all the basic things you need to get started.

Why using RocketDB ?

It's much faster than the competition. We used the data from here in the players csv file and added the data in all the Databases.

DatabaseQueryTime (in ms)
Cassandrainsert into player(...) values(?, ?, ?, ?, ?, ?, ?, ?) x3922823
RocketDBdb.insertLine("player", "id", {...}); x3922376
Cassandraselect * from player where height = 180 ALLOW filtering93
RocketDBdb.search("player", null, ["height == 180"], "weight")2

Installation

npm install rocketdb --save

What can it do?

  • Insert a table
  • Insert a line
  • Insert multiple lines
  • Backup data
  • Load data
  • Import data from csv file
  • Export data in csv file
  • Search in the database
  • Search with an index in the database
  • Sum
  • Mean
  • Count
  • Delete a line
  • Delete a table
  • Create an index

Documentation

You can find the documentation of this npm module here.

Features in the future

  • Being able to import SQL, etc...
  • Being able to split the database in multiple 10MB files for quicker search.
  • groupBy query
  • Sync the server's data with the client's data (only sdata).
  • Graphical interface to handle and show the data to the admin.
  • Regular expression in search function

How to contribute ?

  • You have an issue? Report it in the issue section.
  • You want to update the code. Go ahead and do a pull request. I welcome any changes to the code.
  • Want another functionnality? Put it in the issue section with the tag IDEA.
0.6.0

7 years ago

0.5.2

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.5

7 years ago

0.4.4

7 years ago

0.4.3

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago