spyne 0.20.7 → 0.20.8
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 +49 -17
- package/lib/spyne.esm.js +2 -2
- package/lib/spyne.esm.js.map +1 -1
- package/lib/spyne.umd.js +2 -2
- package/lib/spyne.umd.js.LICENSE.txt +2 -2
- package/package.json +3 -3
- package/src/spyne/spyne-app.js +2 -2
- package/src/tests/package-json.spec.test.js +1 -1
package/README.md
CHANGED
|
@@ -1,31 +1,63 @@
|
|
|
1
|
-
#
|
|
2
|
-
Spyne is a full-featured, Javascript framework that reactively renders to the Real DOM.
|
|
1
|
+
# spyne
|
|
3
2
|
|
|
4
3
|
[](https://www.npmjs.com/package/spyne)
|
|
5
4
|
[](https://github.com/spynejs/spyne/blob/master/LICENSE)
|
|
6
|
-
[](https://travis-ci.com/spynejs/spyne)
|
|
7
6
|
|
|
7
|
+
SpyneJS is a full frontend framework for building modular, scalable web applications — structured for collaborative development between developers and AI assistants.
|
|
8
8
|
|
|
9
|
+
It uses real DOM rendering, observable behavior streams, and pure, reusable logic to create applications that are easy to read, reason about, and extend.
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
SpyneJS structures applications around the View–Behavior–Logic (VBL) architecture, giving developers and AI tools a clear roadmap for building, evolving, and maintaining software.
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
* Chainable <b>ViewStreams</b> reactively maintains state
|
|
14
|
-
* Intuitive <b>Channel</b> data layer harnesses the power of RxJs
|
|
15
|
-
* Versatile process of extending components with pure, static functions
|
|
16
|
-
* Spyne debugger assists in 'wiring' Channels and ViewStreams
|
|
17
|
-
* Two dependencies, [RxJs](https://rxjs-dev.firebaseapp.com) and [ramda](https://ramdajs.com)
|
|
13
|
+
---
|
|
18
14
|
|
|
15
|
+
## Installation
|
|
19
16
|
|
|
20
|
-
|
|
21
|
-
**View Documentation**<br/>
|
|
22
|
-
https://spynejs.org
|
|
23
|
-
|
|
24
|
-
#### Install ##
|
|
25
|
-
```
|
|
17
|
+
```bash
|
|
26
18
|
npm install spyne
|
|
27
19
|
```
|
|
28
20
|
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```javascript
|
|
26
|
+
import { ViewStream } from 'spyne';
|
|
27
|
+
|
|
28
|
+
// Example: create a basic ViewStream
|
|
29
|
+
new ViewStream({
|
|
30
|
+
data: 'Hello World'
|
|
31
|
+
}).appendToDom(document.body);
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Documentation
|
|
37
|
+
|
|
38
|
+
Full framework documentation is available at:
|
|
39
|
+
[https://spynejs.com/docs](https://spynejs.com/docs)
|
|
40
|
+
|
|
41
|
+
Learn about:
|
|
42
|
+
- View–Behavior–Logic (VBL) architecture for clean separation of structure, behavior, and logic
|
|
43
|
+
- Modular hierarchical views (ViewStreams) for scalable UI composition
|
|
44
|
+
- Observable behavior streams (Channels) for reactive event/data flows
|
|
45
|
+
- Modular logic composition (SpyneTraits) for reusable, testable functions
|
|
46
|
+
- Application generation, metadata wiring, and AI-collaborative workflows
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
SpyneJS is licensed under the **GNU Lesser General Public License v3.0 (LGPL-3.0)**
|
|
53
|
+
© 2017–2025 Relevant Context, Inc.
|
|
54
|
+
|
|
55
|
+
You may freely use SpyneJS in commercial and open-source projects under the terms of the LGPL-3.0 license. See the [LICENSE](./LICENSE) file for full details.
|
|
56
|
+
|
|
57
|
+
**Note:** This license applies only to the core SpyneJS framework.
|
|
58
|
+
All proprietary components — including the CMS, metadata proxy layer, AI Assistant UI, and the Plugin MCP Ecosystem — are the intellectual property of Relevant Context, Inc. and are available under a separate commercial license.
|
|
59
|
+
|
|
60
|
+
For licensing, partnerships, or enterprise integration inquiries, contact [frank@spynejs.com](mailto:frank@spynejs.com).
|
|
29
61
|
|
|
30
|
-
Copyright (c) 2017-Present Frank Batista, Relevant Context LLC
|
|
31
62
|
|
|
63
|
+
---
|