sendscript 0.0.3 → 0.0.4
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 +7 -0
- package/README.md +6 -6
- package/README.mz +4 -4
- package/package.json +8 -1
- package/.tap/processinfo/65b0791e-b6b7-4bc9-a201-d723527e67b3.json +0 -784
- package/.tap/processinfo/a23bd004-c2c3-4cb8-865d-19f9a4dfee9e.json +0 -782
- package/.tap/processinfo/b6cdc8e9-f8ff-45e7-93e6-7293b75a0567.json +0 -780
- package/.tap/test-results/api.test.mjs.tap +0 -15
- package/.tap/test-results/curry.test.mjs.tap +0 -26
- package/.tap/test-results/exec.test.mjs.tap +0 -58
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v0.0.4](https://github.com/bas080/sendscript/compare/v0.0.3...v0.0.4)
|
|
8
|
+
|
|
9
|
+
- Add keywords to package.json [`e24d77b`](https://github.com/bas080/sendscript/commit/e24d77b14e67399cedc085294fbef3024a060087)
|
|
10
|
+
- Add .tap to gitignore [`d0abbca`](https://github.com/bas080/sendscript/commit/d0abbcaafab8b915449118b3d2926ca7ff8dc133)
|
|
11
|
+
|
|
7
12
|
#### [v0.0.3](https://github.com/bas080/sendscript/compare/v0.0.2...v0.0.3)
|
|
8
13
|
|
|
14
|
+
> 6 October 2023
|
|
15
|
+
|
|
9
16
|
- Update tap from version 16 to 18 [`465c933`](https://github.com/bas080/sendscript/commit/465c93391097018ee010b51a64ca51d6872b49f1)
|
|
10
17
|
|
|
11
18
|
#### [v0.0.2](https://github.com/bas080/sendscript/compare/v0.0.1...v0.0.2)
|
package/README.md
CHANGED
|
@@ -7,10 +7,6 @@ Write JS code that you can run on servers, browsers or other clients.
|
|
|
7
7
|
[](https://standardjs.com)
|
|
8
8
|
[](./LICENSE.txt)
|
|
9
9
|
|
|
10
|
-
> SendScript leaves it up to you to choose HTTP, web-sockets or any other
|
|
11
|
-
> method of communication between servers and clients that best fits your
|
|
12
|
-
> needs.
|
|
13
|
-
|
|
14
10
|
<!-- toc -->
|
|
15
11
|
|
|
16
12
|
- [Socket example](#socket-example)
|
|
@@ -28,6 +24,10 @@ Write JS code that you can run on servers, browsers or other clients.
|
|
|
28
24
|
|
|
29
25
|
<!-- tocstop -->
|
|
30
26
|
|
|
27
|
+
SendScript leaves it up to you to choose HTTP, web-sockets or any other
|
|
28
|
+
method of communication between servers and clients that best fits your
|
|
29
|
+
needs.
|
|
30
|
+
|
|
31
31
|
## Socket example
|
|
32
32
|
|
|
33
33
|
For this example we'll use [socket.io][socket.io].
|
|
@@ -194,11 +194,11 @@ npm t -- report text-summary
|
|
|
194
194
|
```
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
-
> sendscript@0.0.
|
|
197
|
+
> sendscript@0.0.4 test
|
|
198
198
|
> tap -R silent
|
|
199
199
|
|
|
200
200
|
|
|
201
|
-
> sendscript@0.0.
|
|
201
|
+
> sendscript@0.0.4 test
|
|
202
202
|
> tap report text-summary
|
|
203
203
|
|
|
204
204
|
|
package/README.mz
CHANGED
|
@@ -7,12 +7,12 @@ Write JS code that you can run on servers, browsers or other clients.
|
|
|
7
7
|
[](https://standardjs.com)
|
|
8
8
|
[](./LICENSE.txt)
|
|
9
9
|
|
|
10
|
-
> SendScript leaves it up to you to choose HTTP, web-sockets or any other
|
|
11
|
-
> method of communication between servers and clients that best fits your
|
|
12
|
-
> needs.
|
|
13
|
-
|
|
14
10
|
<!-- toc -->
|
|
15
11
|
|
|
12
|
+
SendScript leaves it up to you to choose HTTP, web-sockets or any other
|
|
13
|
+
method of communication between servers and clients that best fits your
|
|
14
|
+
needs.
|
|
15
|
+
|
|
16
16
|
## Socket example
|
|
17
17
|
|
|
18
18
|
For this example we'll use [socket.io][socket.io].
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sendscript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Blur the line between server and client code.",
|
|
5
5
|
"module": true,
|
|
6
6
|
"main": "index.mjs",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"rpc",
|
|
9
|
+
"json",
|
|
10
|
+
"dsl",
|
|
11
|
+
"lisp",
|
|
12
|
+
"program"
|
|
13
|
+
],
|
|
7
14
|
"repository": {
|
|
8
15
|
"type": "git",
|
|
9
16
|
"url": "git@github.com:bas080/sendscript.git"
|