Package Exports
- secure_json_database
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (secure_json_database) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
sjdb - a secure json database
##Install ´´´shell $ npm install secure_json_database --save ´´´
##Implementing First initialize a object for your database. ´´´js var sjdb = require("secure_json_database")
var SecureJsonDB = new sjdb({ path: "your path.sjson", key: "your private key" }) ´´´
###Tables A table is just a way of organizing your data easily
´´´js //adding a table to the database SecureJsonDB.addTable("table name")
//getting all the table names SecureJsonDB.getAllTableNames()
//getting a javascript object from a table by name SecureJsonDB.getTable("table name") ´´´
###Manipulating data