Skip to content

Commit

Permalink
nodejs doesn't support indexeddb
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamPerson committed Jul 1, 2022
1 parent c77c8d3 commit 4fd4370
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* [Inserting & Updating](#inserting--updating)
* [Select Queries](#select-queries)
* [Deleting](#deleting)
* [NodeJS](#nodejs)
* [Example Usage](#example-usage)

Installation
Expand Down Expand Up @@ -300,20 +299,6 @@ To delete entries, simply pass the table and a query just like you would in a `s
await LocalDatabase.delete("PersonsTable", {age: {$lt: 18}});
```


NodeJS
------

This embedded database is made for use on the front-end of a website although you can modify `export default` to `module.exports` in all classes:
```js
export default LocalDatabase;
```
to
```js
module.exports = LocalDatabase;
```
to use this in NodeJS.

Example Usage
-------------

Expand Down

0 comments on commit 4fd4370

Please sign in to comment.