├── .eslintrc.js ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── @types └── pouchdb-core │ └── index.d.ts ├── LICENSE ├── README.md ├── bin ├── dev-server.js ├── run-couchdb-on-travis.sh ├── run-test.sh └── test-browser.js ├── bower.json ├── package.json ├── src ├── browser.ts ├── index.ts └── uuid.ts ├── test.tsconfig.json ├── test ├── bind-polyfill.js ├── index.html ├── test.ts └── webrunner.js ├── tsconfig.json ├── webpack.config.js └── webpack.test.node.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | node_modules 3 | .DS_Store 4 | *~ 5 | coverage 6 | npm-debug.log 7 | vendor/ 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/.travis.yml -------------------------------------------------------------------------------- /@types/pouchdb-core/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/@types/pouchdb-core/index.d.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/README.md -------------------------------------------------------------------------------- /bin/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/bin/dev-server.js -------------------------------------------------------------------------------- /bin/run-couchdb-on-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/bin/run-couchdb-on-travis.sh -------------------------------------------------------------------------------- /bin/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/bin/run-test.sh -------------------------------------------------------------------------------- /bin/test-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/bin/test-browser.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/package.json -------------------------------------------------------------------------------- /src/browser.ts: -------------------------------------------------------------------------------- 1 | import rel from './index'; 2 | 3 | PouchDB.plugin(rel); 4 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/src/uuid.ts -------------------------------------------------------------------------------- /test.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/test.tsconfig.json -------------------------------------------------------------------------------- /test/bind-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/test/bind-polyfill.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/webrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/test/webrunner.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.test.node.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb-community/relational-pouch/HEAD/webpack.test.node.config.js --------------------------------------------------------------------------------