
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
betajs-indexeddb
Advanced tools
BetaJS-IndexedDB is an IndexedDB wrapper for BetaJS.
You can use the library in the browser and compile it as well.
<script src="betajs/dist/betajs.min.js"></script>
<script src="betajs-data/dist/betajs-data.min.js"></script>
<script src="https://unpkg.com/indexeddb@latest/dist/indexeddb.min.js"></script>
<script src="betajs-indexeddb/dist/betajs-indexeddb.min.js"></script>
git clone https://github.com/betajs/betajs-indexeddb.git
npm install
grunt
We provide a simple abstraction for databases and tables, with a concrete implementation for IndexedDB.
First, you instantiate a database, e.g. a IndexedDB:
var database = new BetaJS.Data.Databases.IndexedDB.IndexedDBDatabase("database", {
'table1': "indexkey1,indexkey2",
...
});
The IndexedDBDatabase
class inherits from the abstract Database
class.
Once you have a database
instance, you can access database tables / collections as follows:
var table = database.getTable('my-table-name');
A table
instance allows you to perform the typical (asynchronous) CRUD operations on the table:
table.insertRow({row data}).success(function (inserted) {...}).error(function (error) {...});
table.removeRow({remove query}).success(function () {...}).error(function (error) {...});
table.removeById(id).success(function () {...}).error(function (error) {...});
table.updateRow({update query}, {row data}).success(function (updated) {...}).error(function (error) {...});
table.updateById(id, {row data}).success(function (updated) {...}).error(function (error) {...});
table.find({search query}, {limit, skip, sort}).success(function (rowIterator) {...}).error(function (error) {...});
table.findOne({search query}, {skip, sort}).success(function (row) {...}).error(function (error) {...});
table.findById(id).success(function (row) {...}).error(function (error) {...});
In most cases, you would not access database table instances directly but through the abstraction of a store.
Database Stores allow you to access a database table through the abstract of a Store
, providing all the additional functionality from the BetaJS-Data
module.
Once you have instantiated your database
instance, you can create a corresponding Store
for a table as follows, e.g. for a IndexedDB:
var store = new BetaJS.Data.Stores.DatabaseStore(database, "my-database-table");
Resource | URL |
---|---|
Homepage | https://betajs.com |
Git | git://github.com/betajs/betajs-indexeddb.git |
Repository | https://github.com/betajs/betajs-indexeddb |
Blog | https://blog.betajs.com |
https://twitter.com/thebetajs |
Target | Versions |
---|
Resource | URL |
---|---|
betajs-indexeddb.js | http://cdn.rawgit.com/betajs/betajs-indexeddb/master/dist/betajs-indexeddb.js |
betajs-indexeddb.min.js | http://cdn.rawgit.com/betajs/betajs-indexeddb/master/dist/betajs-indexeddb.min.js |
betajs-indexeddb-noscoped.js | http://cdn.rawgit.com/betajs/betajs-indexeddb/master/dist/betajs-indexeddb-noscoped.js |
betajs-indexeddb-noscoped.min.js | http://cdn.rawgit.com/betajs/betajs-indexeddb/master/dist/betajs-indexeddb-noscoped.min.js |
Name | URL |
---|---|
betajs | Open |
betajs-data | Open |
Name | URL |
---|---|
betajs-scoped | Open |
Apache-2.0
FAQs
BetaJS-IndexedDB is an IndexedDB wrapper for BetaJS.
We found that betajs-indexeddb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.