@jseeio/jsee 0.2.7 → 0.2.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/CHANGELOG.md +3 -0
- package/README.md +8 -8
- package/dist/jsee.js +1 -1
- package/dist/jsee.runtime.js +1 -1
- package/main.js +2 -1
- package/package.json +11 -1
- package/dist/worker_bundle.js +0 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Minimal example:
|
|
|
16
16
|
|
|
17
17
|
↳ [Result](https://jsee.org/test/minimal1.html) (if you see nothing, it's probably because today is Dec 29, and the CDN hasn't updated its cache yet)
|
|
18
18
|
|
|
19
|
-
## Execution
|
|
19
|
+
## JavaScript Execution Environment
|
|
20
20
|
|
|
21
21
|
JSEE is a browser-based environment for processing tasks. It creates a graphical interface, executes code in a web worker or via API, bridges all pieces together into a user-friendly web app. In some cases, JSEE does all of that automatically, without any configuration. And when the configuration is required, it's just one JSON file with an [intuitive structure](#schema).
|
|
22
22
|
|
|
@@ -32,15 +32,15 @@ Instead of dealing with raw HTML tags, input elements or charts, JSEE makes it p
|
|
|
32
32
|
|
|
33
33
|
```
|
|
34
34
|
Schema Model Render*
|
|
35
|
-
DEV
|
|
36
|
-
|
|
35
|
+
DEV -► json js/py js
|
|
36
|
+
| | |
|
|
37
37
|
┌──▼────────▼────────▼───┐
|
|
38
38
|
│ new JSEE (...) │
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
┌──▼──┐ ┌──────▼─────┐
|
|
42
|
-
USER
|
|
43
|
-
└─────┘ └────────────┘
|
|
39
|
+
└────────────────────────┘
|
|
40
|
+
| |
|
|
41
|
+
┌──▼──┐ ┌──────▼─────┐ ◄~ tf.js
|
|
42
|
+
USER ◄-► │ GUI │ ◄-► │ Model │ ◄~ pyodide
|
|
43
|
+
└─────┘ └────────────┘ ◄~ wasm
|
|
44
44
|
Vue³ WebWorker*
|
|
45
45
|
|
|
46
46
|
* - optional
|