@taleshape/shaper 0.1.2 → 0.1.4
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 +25 -0
- package/bin/SHA256SUMS +4 -0
- package/package.json +2 -3
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Shaper is a minimal data platform built on top of DuckDB and NATS to build and embed analytics dashboards into your software.
|
|
2
|
+
|
|
3
|
+
This NPM package makes it easy to install and run Shaper locally for development purposes.
|
|
4
|
+
|
|
5
|
+
You can run Shaper directly via npx:
|
|
6
|
+
```bash
|
|
7
|
+
npx @taleshape/shaper
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Or you can install it globally:
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @taleshape/shaper
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Then run it:
|
|
16
|
+
```bash
|
|
17
|
+
shaper
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
To run Shaper in production, we recommend using Docker.
|
|
21
|
+
|
|
22
|
+
Find more detailed installation and usage instructions in the documentation:
|
|
23
|
+
|
|
24
|
+
https://taleshape.com/shaper/docs/installing-shaper/
|
|
25
|
+
|
package/bin/SHA256SUMS
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
62c695d2dd1b32bb3e14ce194941ea35cdc62e85d4aea11d9a1281dc7833e297 shaper-linux-amd64
|
|
2
|
+
82602e573f26dc07b5276bb34ecc2d3c829a52eae650cd4f567e1e17df4ffb70 shaper-darwin-arm64
|
|
3
|
+
8e0294bbddb81d20e3d73f3dc8e79aee975e047c6eea02cc47c12c93b2ea6c74 shaper-darwin-amd64
|
|
4
|
+
9eb676557f19dd90e408eb78aa8f029378ae84d677a2de0e46640ba17c43c69c shaper-linux-arm64
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taleshape/shaper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Minimal Embedded Analytics and Data Platform",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,8 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"bin",
|
|
15
|
-
"
|
|
16
|
-
"shaper.js",
|
|
15
|
+
"README.md",
|
|
17
16
|
"index.js",
|
|
18
17
|
"install.js",
|
|
19
18
|
"uninstall.js"
|