@graphysdk/viz-engine 2.0.0-beta.1786440210947 → 2.0.0-beta.1787130761469

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 CHANGED
@@ -1,16 +1,13 @@
1
1
  # @graphysdk/viz-engine
2
2
 
3
- Grammar-of-graphics engine for Graphy charts. Compiles a declarative `Spec` into a render-ready `CompiledSpec`. Framework-agnostic — no DOM, no React.
3
+ The Graphy chart engine. Build a spec and compile it — no DOM, no React.
4
4
 
5
- ## Docs
6
-
7
- - [How a chart is built](https://docs.graphy.dev/sdk-next/concepts/how-a-chart-is-built)
8
- - [Quickstart](https://docs.graphy.dev/sdk-next/quickstart) — start with `@graphysdk/react` for the batteries-included React path
5
+ React apps should start with [`@graphysdk/react`](https://www.npmjs.com/package/@graphysdk/react).
9
6
 
10
7
  ## Install
11
8
 
12
9
  ```bash
13
- pnpm add @graphysdk/viz-engine
10
+ npm install @graphysdk/viz-engine
14
11
  ```
15
12
 
16
13
  ## Usage
@@ -22,4 +19,7 @@ const input = pipe(createSpec({ x: 'month', y: 'revenue' }), geom.bar(), scale.x
22
19
  const { compiled } = createCompiler().compile({ input, data });
23
20
  ```
24
21
 
25
- For React painting, use [`@graphysdk/react`](https://www.npmjs.com/package/@graphysdk/react) (recommended) or [`@graphysdk/react-renderer`](https://www.npmjs.com/package/@graphysdk/react-renderer).
22
+ ## Docs
23
+
24
+ - [How a chart is built](https://docs.graphy.dev/sdk-next/concepts/how-a-chart-is-built)
25
+ - [Quickstart](https://docs.graphy.dev/sdk-next/quickstart)