@jspreddy/torq 0.1.31 → 0.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -24,6 +24,21 @@ SQL Like Query interface for better code readability.
|
|
|
24
24
|
> - [Integration tests: Users Table](https://github.com/jspreddy/torq/blob/main/tests/integration-tests/01-users-table.test.js#L33)
|
|
25
25
|
|
|
26
26
|
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
NPM Package: [@jspreddy/torq](https://www.npmjs.com/package/@jspreddy/torq)
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install @jspreddy/torq
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## Available Imports
|
|
37
|
+
```js
|
|
38
|
+
import { Index, Table, Query, Operation, DdbType } from '@jspreddy/torq';
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
|
|
27
42
|
## Examples
|
|
28
43
|
|
|
29
44
|
### Example 1: Basic query
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jspreddy/torq",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"description": "SQL Like query builder for dynamodb.",
|
|
5
5
|
"author": "Sai Phaninder Reddy Jonnala",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"source": "src/index.ts",
|
|
8
8
|
"module": "dist/module.js",
|
|
9
9
|
"types": "dist/types.d.ts",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/jspreddy/torq"
|
|
13
|
+
},
|
|
10
14
|
"engines": {
|
|
11
15
|
"node": ">= 16"
|
|
12
16
|
},
|