
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
betajs-dexie
Advanced tools
BetaJS-Dexie is a Dexie / 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/dexie@latest/dist/dexie.min.js"></script>
<script src="betajs-dexie/dist/betajs-dexie.min.js"></script>
git clone https://github.com/betajs/betajs-dexie.git
npm install
grunt
We provide a simple abstraction for databases and tables, with a concrete implementation for Dexie.
First, you instantiate a database, e.g. a Dexie:
var database = new BetaJS.Data.Databases.Dexie.DexieDatabase("database", {
'table1': "indexkey1,indexkey2",
...
});
The DexieDatabase
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 Dexie:
var store = new BetaJS.Data.Stores.DatabaseStore(database, "my-database-table");
Resource | URL |
---|---|
Homepage | https://betajs.com |
Git | git://github.com/betajs/betajs-dexie.git |
Repository | https://github.com/betajs/betajs-dexie |
Blog | https://blog.betajs.com |
https://twitter.com/thebetajs |
Target | Versions |
---|
Resource | URL |
---|---|
betajs-dexie.js | http://cdn.rawgit.com/betajs/betajs-dexie/master/dist/betajs-dexie.js |
betajs-dexie.min.js | http://cdn.rawgit.com/betajs/betajs-dexie/master/dist/betajs-dexie.min.js |
betajs-dexie-noscoped.js | http://cdn.rawgit.com/betajs/betajs-dexie/master/dist/betajs-dexie-noscoped.js |
betajs-dexie-noscoped.min.js | http://cdn.rawgit.com/betajs/betajs-dexie/master/dist/betajs-dexie-noscoped.min.js |
Name | URL |
---|---|
betajs | Open |
betajs-data | Open |
Name | URL |
---|---|
betajs-scoped | Open |
Apache-2.0
FAQs
BetaJS-Dexie is a Dexie / IndexedDB wrapper for BetaJS.
We found that betajs-dexie 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.