@volynets/reflex 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +9 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
- # `@volynetstyle/reflex`
1
+ # `@volynets/reflex`
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/%40volynetstyle%2Freflex?logo=npm)](https://www.npmjs.com/package/@volynetstyle/reflex)
4
- [![npm downloads](https://img.shields.io/npm/dm/%40volynetstyle%2Freflex?logo=npm)](https://www.npmjs.com/package/@volynetstyle/reflex)
3
+ [![npm version](https://img.shields.io/npm/v/%40volynets%2Freflex?logo=npm)](https://www.npmjs.com/package/@volynets/reflex)
4
+ [![npm downloads](https://img.shields.io/npm/dm/%40volynets%2Freflex?logo=npm)](https://www.npmjs.com/package/@volynets/reflex)
5
5
  [![license: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/volynetstyle/Reflex/blob/main/packages/reflex/LICENSE)
6
6
  [![typed with TypeScript](https://img.shields.io/badge/typed-TypeScript-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
7
7
  [![runtime: Reflex](https://img.shields.io/badge/runtime-Reflex-111827)](https://github.com/volynetstyle/Reflex)
@@ -12,7 +12,7 @@
12
12
 
13
13
  Small signal-style reactivity on top of the Reflex runtime.
14
14
 
15
- `@volynetstyle/reflex` is the product-facing API for building reactive state, derived values, effects, and event-driven state without dropping down to the lower-level runtime primitives.
15
+ `@volynets/reflex` is the product-facing API for building reactive state, derived values, effects, and event-driven state without dropping down to the lower-level runtime primitives.
16
16
 
17
17
  It gives you:
18
18
 
@@ -24,18 +24,17 @@ It gives you:
24
24
  Under the hood it is built on:
25
25
 
26
26
  - [`@reflex/runtime`](https://github.com/volynetstyle/Reflex/tree/main/packages/%40reflex/runtime) for reactive execution
27
- - [`@reflex/core`](https://github.com/volynetstyle/Reflex/tree/main/packages/%40reflex/core) for lower-level infrastructure
28
27
 
29
28
  ## Install
30
29
 
31
30
  ```bash
32
- npm install @volynetstyle/reflex
31
+ npm install @volynets/reflex
33
32
  ```
34
33
 
35
34
  ## Quick Start
36
35
 
37
36
  ```ts
38
- import { computed, createRuntime, effect, signal } from "@volynetstyle/reflex";
37
+ import { computed, createRuntime, effect, signal } from "@volynets/reflex";
39
38
 
40
39
  const rt = createRuntime();
41
40
 
@@ -83,7 +82,7 @@ The top-level primitives are not methods on `rt`, but they are still runtime-bac
83
82
  ### Signals and derived values
84
83
 
85
84
  ```ts
86
- import { computed, createRuntime, memo, signal } from "@volynetstyle/reflex";
85
+ import { computed, createRuntime, memo, signal } from "@volynets/reflex";
87
86
 
88
87
  createRuntime();
89
88
 
@@ -106,7 +105,7 @@ console.log(warmed()); // 290
106
105
  ### Events and accumulated state
107
106
 
108
107
  ```ts
109
- import { computed, createRuntime, effect, hold, scan } from "@volynetstyle/reflex";
108
+ import { computed, createRuntime, effect, hold, scan } from "@volynets/reflex";
110
109
 
111
110
  const rt = createRuntime();
112
111
  const updates = rt.event<number>();
@@ -141,7 +140,7 @@ import {
141
140
  map,
142
141
  merge,
143
142
  subscribeOnce,
144
- } from "@volynetstyle/reflex";
143
+ } from "@volynets/reflex";
145
144
 
146
145
  const rt = createRuntime();
147
146
  const clicks = rt.event<number>();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volynets/reflex",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Public Reflex facade with a connected runtime",
6
6
  "license": "MIT",