# pouchdb-adapter-fs

> PouchDB adapter that uses fsdown

Latest version **2.0.7** (published 2017-06-05) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install pouchdb-adapter-fs
pnpm add pouchdb-adapter-fs
yarn add pouchdb-adapter-fs
bun add pouchdb-adapter-fs
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.7 |
| Published | 2017-06-05 |
| First published | 2016-08-08 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Nolan Lawson |
| Maintainers | gr2m, nolanlawson |
| Keywords | fs, pouchdb, adapter |

## Links

- npm: https://www.npmjs.com/package/pouchdb-adapter-fs
- Repository: https://github.com/pouchdb-community/pouchdb-adapter-fs
- Homepage: https://github.com/pouchdb-community/pouchdb-adapter-fs#readme
- Issues: https://github.com/pouchdb-community/pouchdb-adapter-fs/issues
- npm.io page: https://npm.io/package/pouchdb-adapter-fs

## Dependencies (3)

- [fsdown](https://npm.io/package/fsdown.md) ^2.0.1
- [js-extend](https://npm.io/package/js-extend.md) ^1.0.1
- [pouchdb-adapter-leveldb-core](https://npm.io/package/pouchdb-adapter-leveldb-core.md) 6.2.0

## Alternatives

- [unionfs](https://npm.io/package/unionfs.md) — 2.2M weekly downloads
- [path-starts-with](https://npm.io/package/path-starts-with.md) — 35.9K weekly downloads
- [redzip](https://npm.io/package/redzip.md) — 1.2K weekly downloads
- [vscode-anymatch](https://npm.io/package/vscode-anymatch.md) — 848 weekly downloads
- [@ledgerhq/coin-filecoin](https://npm.io/package/@ledgerhq/coin-filecoin.md) — 793 weekly downloads

## Recent versions

- 2.0.7 (latest) — 2017-06-05
- 2.0.6 — 2017-02-08
- 2.0.5 — 2017-01-05
- 2.0.4 — 2016-10-16
- 2.0.3 — 2016-09-30
- 2.0.2 — 2016-09-17
- 2.0.1 — 2016-09-06
- 2.0.0 — 2016-09-03
- 1.0.0 — 2016-08-08

## README

pouchdb-adapter-fs
=====

PouchDB adapter using [fsdown](https://github.com/nolanlawson/fsdown) under the hood. Designed for running a quick persistent PouchDB adapter in Node.js.

**Warning: not designed for production use.** fsdown contains race conditions and is most appropriate for quick debugging and testing. It does however pass the full PouchDB test suite.

Usage
----

Install:

    npm install pouchdb-adapter-fs

Then

```js
var PouchDB = require('pouchdb-core')
  .plugin(require('pouchdb-adapter-fs'));

var db = new PouchDB('mydb', {adapter: 'fs'});
```

Testing
--------

```
COUCH_HOST=http://admin:secret@localhost:5984 npm test
```

---
_Source: https://npm.io/package/pouchdb-adapter-fs · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
