Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit d510999

Browse files
authored
Update deprecation notice
1 parent 41358ef commit d510999

File tree

1 file changed

+1
-36
lines changed

1 file changed

+1
-36
lines changed

Diff for: README.md

+1-36
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,6 @@
11
# level-js
22

3-
**An [`abstract-leveldown`][abstract-leveldown] compliant store on top of [IndexedDB][indexeddb].**
4-
5-
> :pushpin: This module will soon be [deprecated](https://github.com/Level/community/issues/113), because it is superseded by [`browser-level`](https://github.com/Level/browser-level).
6-
7-
[![level badge][level-badge]][awesome]
8-
[![npm](https://img.shields.io/npm/v/level-js.svg)](https://www.npmjs.com/package/level-js)
9-
[![Test](https://img.shields.io/github/workflow/status/Level/level-js/Test?label=test)](https://github.com/Level/level-js/actions/workflows/test.yml)
10-
[![Coverage](https://img.shields.io/codecov/c/github/Level/level-js?label=&logo=codecov&logoColor=fff)](https://codecov.io/gh/Level/level-js)
11-
[![Standard](https://img.shields.io/badge/standard-informational?logo=javascript&logoColor=fff)](https://standardjs.com)
12-
[![Common Changelog](https://common-changelog.org/badge.svg)](https://common-changelog.org)
13-
[![Donate](https://img.shields.io/badge/donate-orange?logo=open-collective&logoColor=fff)](https://opencollective.com/level)
14-
15-
## Table of Contents
16-
17-
<details><summary>Click to expand</summary>
18-
19-
- [Background](#background)
20-
- [Example](#example)
21-
- [Browser Support](#browser-support)
22-
- [Type Support](#type-support)
23-
- [Install](#install)
24-
- [API](#api)
25-
- [`db = leveljs(location[, options])`](#db--leveljslocation-options)
26-
- [`options`](#options)
27-
- [Big Thanks](#big-thanks)
28-
- [Contributing](#contributing)
29-
- [Donate](#donate)
30-
- [License](#license)
31-
32-
</details>
3+
**Superseded by [`browser-level`](https://github.com/Level/browser-level). Please see [Frequently Asked Questions](https://github.com/Level/community#faq).**
334

345
## Background
356

@@ -74,10 +45,6 @@ await db.put('hello', Buffer.from('world'))
7445
const value = await db.get('hello')
7546
```
7647

77-
## Browser Support
78-
79-
[![Sauce Test Status](https://app.saucelabs.com/browser-matrix/level-js.svg)](https://app.saucelabs.com/u/level-js)
80-
8148
## Type Support
8249

8350
Keys and values can be a string or [`Buffer`][buffer]. Any other type will be irreversibly stringified. The only exceptions are `null` and `undefined`. Keys and values of that type are rejected.
@@ -142,8 +109,6 @@ Support us with a monthly donation on [Open Collective](https://opencollective.c
142109

143110
[MIT](LICENSE)
144111

145-
[level-badge]: https://leveljs.org/img/badge.svg
146-
147112
[indexeddb]: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API
148113

149114
[buffer]: https://nodejs.org/api/buffer.html

0 commit comments

Comments
 (0)