@herdwatch/lokijs 1.5.8-dev.6 → 1.5.12-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/package.json +3 -2
- package/src/incremental-indexeddb-adapter.js +524 -179
- package/src/loki-indexed-adapter.js +18 -5
- package/src/lokijs.js +785 -568
- package/test.db +1 -0
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# LokiJS
|
|
2
2
|
|
|
3
|
+
The super fast in-memory javascript document oriented database.
|
|
4
|
+
|
|
5
|
+
Enable offline-syncing to your SQL/NoSQL database servers with [SyncProxy](https://www.syncproxy.com) !! Code-free real time syncing, ideal for mobile, electron and web apps.
|
|
6
|
+
|
|
3
7
|
[](https://gitter.im/techfort/LokiJS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
4
8
|

|
|
5
9
|
[](http://badge.fury.io/js/lokijs)
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@herdwatch/lokijs",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.12-dev.0",
|
|
4
4
|
"description": "Fast document oriented javascript in-memory database",
|
|
5
|
-
"homepage": "
|
|
5
|
+
"homepage": "https://techfort.github.io/LokiJS/",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"main": "src/lokijs.js",
|
|
8
8
|
"directories": {
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"lint": "jshint src",
|
|
30
|
+
"test:browser:dev": "karma start karma.conf.js",
|
|
30
31
|
"test:browser": "karma start karma.conf.js --single-run",
|
|
31
32
|
"test:node": "istanbul cover --dir coverage/nodejs node_modules/jasmine/bin/jasmine.js",
|
|
32
33
|
"pretest": "npm run lint",
|