Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions docs/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,23 +245,6 @@ const db = new PouchDB('mydb', {adapter: 'localstorage'});
console.log(db.adapter); // 'localstorage'
```

### [pouchdb-adapter-fruitdown](https://npmjs.org/package/pouchdb-adapter-fruitdown)

An optional adapter that works in the browser using IndexedDB via [fruitdown](https://github.com/nolanlawson/fruitdown). The adapter name
is `'fruitdown'`.

#### Example usage

```bash
npm install pouchdb-adapter-fruitdown
```

```js
PouchDB.plugin(require('pouchdb-adapter-fruitdown'));
const db = new PouchDB('mydb', {adapter: 'fruitdown'});
console.log(db.adapter); // 'fruitdown'
```

### [pouchdb-adapter-node-websql](https://npmjs.org/package/pouchdb-adapter-node-websql)

An optional adapter that works in Node.js using SQLite via [node-websql](https://github.com/nolanlawson/node-websql). The adapter name
Expand Down
Binary file modified docs/static/img/pouchdb_adapters.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions docs/static/svg/pouchdb_adapters.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 0 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"dependencies": {
"double-ended-queue": "2.1.0-0",
"fetch-cookie": "2.2.0",
"fruitdown": "1.0.2",
"level": "6.0.1",
"level-codec": "9.0.2",
"level-write-stream": "1.0.0",
Expand Down
3 changes: 1 addition & 2 deletions packages/node_modules/pouchdb-adapter-leveldb-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ PouchDB's API to access them.

Only certain adapters (e.g. in-memory, based on [MemDOWN](http://github.com/level/memdown)) are officially supported by the
PouchDB project; you are free to experiment with other datastores, but be forewarned of the above caveats. To see how to
build a custom LevelDOWN-based database, see the source code for `pouchdb-adapter-memory`, `pouchdb-adapter-localstorage`, or
`pouchdb-adapter-fruitdown`.
build a custom LevelDOWN-based database, see the source code for `pouchdb-adapter-memory` or `pouchdb-adapter-localstorage`.

### Details

Expand Down

This file was deleted.

12 changes: 0 additions & 12 deletions packages/node_modules/pouchdb/src/plugins/fruitdown.js

This file was deleted.

Loading