linny-r 1.6.7 → 1.7.0
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 +7 -7
- package/console.js +104 -220
- package/package.json +1 -1
- package/server.js +39 -133
- package/static/index.html +64 -5
- package/static/linny-r.css +41 -0
- package/static/scripts/linny-r-ctrl.js +31 -29
- package/static/scripts/linny-r-gui-controller.js +168 -25
- package/static/scripts/linny-r-gui-monitor.js +21 -9
- package/static/scripts/linny-r-milp.js +363 -188
- package/static/scripts/linny-r-model.js +26 -12
- package/static/scripts/linny-r-vm.js +82 -45
package/README.md
CHANGED
@@ -30,7 +30,7 @@ Technical documentation will be developed on GitHub: https://github.com/pwgbots/
|
|
30
30
|
Linny-R is developed as a JavaScript package, and requires that **Node.js** is installed on your computer.
|
31
31
|
This software can be downloaded from <a href="https://nodejs.org" target="_blank">https://nodejs.org</a>.
|
32
32
|
Make sure that you choose the correct installer for your computer.
|
33
|
-
Linny-R is developed using the _current_ release. Presently (
|
33
|
+
Linny-R is developed using the _current_ release. Presently (October 2023) this is 21.1.0.
|
34
34
|
|
35
35
|
Run the installer and accept the default settings.
|
36
36
|
There is **no** need to install the optional _Tools for Native Modules_.
|
@@ -41,7 +41,7 @@ Verify the installation by typing:
|
|
41
41
|
|
42
42
|
``node --version``
|
43
43
|
|
44
|
-
The response should be the version number of Node.js, for example:
|
44
|
+
The response should be the version number of Node.js, for example: v21.1.0.
|
45
45
|
|
46
46
|
## Installing Linny-R
|
47
47
|
It is advisable to install Linny-R in a directory on your computer, not in a cloud.
|
@@ -234,8 +234,8 @@ Open the Command Line Interface (CLI) of your computer, change to your Linny-R d
|
|
234
234
|
This response should be something similar to:
|
235
235
|
|
236
236
|
<pre>
|
237
|
-
Node.js server for Linny-R version 1.
|
238
|
-
Node.js version:
|
237
|
+
Node.js server for Linny-R version 1.7.0
|
238
|
+
Node.js version: v21.1.0
|
239
239
|
... etc.
|
240
240
|
</pre>
|
241
241
|
|
@@ -245,9 +245,9 @@ The Linny-R GUI should show in your browser window,
|
|
245
245
|
while in the CLI you should see a long series of server log messages like:
|
246
246
|
|
247
247
|
<pre>
|
248
|
-
[2023-
|
249
|
-
[2023-
|
250
|
-
[2023-
|
248
|
+
[2023-10-29 22:55:17] Static file: /index.html
|
249
|
+
[2023-10-29 22:55:17] Static file: /scripts/iro.min.js
|
250
|
+
[2023-10-29 22:55:17] Static file: /images/open.png
|
251
251
|
... etc.
|
252
252
|
</pre>
|
253
253
|
|