├── README.md ├── entitydb.js ├── package.json ├── run-tests.sh ├── test-import.js ├── test.js └── test ├── get.js ├── getAll.js ├── multi-write-concurrent.js ├── multi-write.js ├── onchange.js ├── write.js └── writeAll.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/README.md -------------------------------------------------------------------------------- /entitydb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/entitydb.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/package.json -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- 1 | tape test/*.js | tap-dot 2 | -------------------------------------------------------------------------------- /test-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test-import.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test.js -------------------------------------------------------------------------------- /test/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test/get.js -------------------------------------------------------------------------------- /test/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test/getAll.js -------------------------------------------------------------------------------- /test/multi-write-concurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test/multi-write-concurrent.js -------------------------------------------------------------------------------- /test/multi-write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test/multi-write.js -------------------------------------------------------------------------------- /test/onchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test/onchange.js -------------------------------------------------------------------------------- /test/write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test/write.js -------------------------------------------------------------------------------- /test/writeAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arj03/ssb-entitydb/HEAD/test/writeAll.js --------------------------------------------------------------------------------