Skip to content

Commit

Permalink
Readme (#11)
Browse files Browse the repository at this point in the history
* update
* 0.2.2
  • Loading branch information
yusufshakeel authored Jan 1, 2025
1 parent e62b6b2 commit 39a9cd8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Minimalistic JSON database.

[![Build Status](https://github.com/yusufshakeel/minivium/actions/workflows/ci.yml/badge.svg)](https://github.com/yusufshakeel/minivium/actions/workflows/ci.yml)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/yusufshakeel/minivium)
[![npm version](https://img.shields.io/badge/npm-0.2.1-blue.svg)](https://www.npmjs.com/package/minivium)
[![npm version](https://img.shields.io/badge/npm-0.2.2-blue.svg)](https://www.npmjs.com/package/minivium)
[![npm Downloads](https://img.shields.io/npm/dm/minivium.svg)](https://www.npmjs.com/package/minivium)

![img.webp](assets/img.webp)
Expand Down Expand Up @@ -286,7 +286,7 @@ Where `ids` is an array of ids.

Sync syntax `select(collectionName, [option])`

Where, `option` consists fo the `where` clause.
Where, `option` consists of the `where` clause.

Refer [Operators](#operators)

Expand Down Expand Up @@ -392,7 +392,11 @@ db.query.select(
SQL equivalent

```sql
select id, username, score as totalScore from users;
select
id,
username,
score as totalScore
from users;
```

## Operators
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minivium",
"version": "0.2.1",
"version": "0.2.2",
"description": "Minimalistic JSON database.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down

0 comments on commit 39a9cd8

Please sign in to comment.