spawno 2.1.0 → 2.1.2
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/LICENSE +1 -1
- package/README.md +104 -9
- package/package.json +4 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2016-
|
|
3
|
+
Copyright (c) 2016-25 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -1,12 +1,52 @@
|
|
|
1
1
|
<!-- Please do not edit this file. Edit the `blah` field in the `package.json` instead. If in doubt, open an issue. -->
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
4
20
|
# spawno
|
|
5
21
|
|
|
6
|
-
[![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [](https://github.com/IonicaBizau/ama) [](https://www.npmjs.com/package/spawno) [](https://www.npmjs.com/package/spawno)
|
|
22
|
+
[![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [](https://github.com/IonicaBizau/ama) [](https://www.npmjs.com/package/spawno) [](https://www.npmjs.com/package/spawno) [](https://www.codementor.io/@johnnyb?utm_source=github&utm_medium=button&utm_term=johnnyb&utm_campaign=github)
|
|
23
|
+
|
|
24
|
+
<a href="https://www.buymeacoffee.com/H96WwChMy" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png" alt="Buy Me A Coffee"></a>
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
7
31
|
|
|
8
32
|
> Easily work with child processes.
|
|
9
33
|
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
10
50
|
## :cloud: Installation
|
|
11
51
|
|
|
12
52
|
```sh
|
|
@@ -18,6 +58,17 @@ yarn add spawno
|
|
|
18
58
|
```
|
|
19
59
|
|
|
20
60
|
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
21
72
|
## :clipboard: Example
|
|
22
73
|
|
|
23
74
|
|
|
@@ -52,18 +103,29 @@ spawn.promise("curl", ["ionicabizau.net"]).then(console.log)
|
|
|
52
103
|
|
|
53
104
|
|
|
54
105
|
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
55
113
|
## :question: Get Help
|
|
56
114
|
|
|
57
115
|
There are few ways to get help:
|
|
58
116
|
|
|
117
|
+
|
|
118
|
+
|
|
59
119
|
1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question.
|
|
60
120
|
2. For bug reports and feature requests, open issues. :bug:
|
|
61
|
-
|
|
62
121
|
3. For direct and quick help, you can [use Codementor](https://www.codementor.io/johnnyb). :rocket:
|
|
63
122
|
|
|
64
123
|
|
|
65
124
|
|
|
66
125
|
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
67
129
|
## :memo: Documentation
|
|
68
130
|
|
|
69
131
|
|
|
@@ -94,12 +156,22 @@ The promise interface.
|
|
|
94
156
|
|
|
95
157
|
|
|
96
158
|
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
97
170
|
## :yum: How to contribute
|
|
98
171
|
Have an idea? Found a bug? See [how to contribute][contributing].
|
|
99
172
|
|
|
100
173
|
|
|
101
174
|
## :sparkling_heart: Support my projects
|
|
102
|
-
|
|
103
175
|
I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously,
|
|
104
176
|
this takes time. You can integrate and use these projects in your applications *for free*! You can even change the source code and redistribute (even resell it).
|
|
105
177
|
|
|
@@ -119,21 +191,44 @@ Thanks! :heart:
|
|
|
119
191
|
|
|
120
192
|
|
|
121
193
|
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
122
215
|
## :scroll: License
|
|
123
216
|
|
|
124
217
|
[MIT][license] © [Ionică Bizău][website]
|
|
125
218
|
|
|
126
219
|
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
[license]: /LICENSE
|
|
225
|
+
[website]: https://ionicabizau.net
|
|
226
|
+
[contributing]: /CONTRIBUTING.md
|
|
227
|
+
[docs]: /DOCUMENTATION.md
|
|
127
228
|
[badge_patreon]: https://ionicabizau.github.io/badges/patreon.svg
|
|
128
229
|
[badge_amazon]: https://ionicabizau.github.io/badges/amazon.svg
|
|
129
230
|
[badge_paypal]: https://ionicabizau.github.io/badges/paypal.svg
|
|
130
231
|
[badge_paypal_donate]: https://ionicabizau.github.io/badges/paypal_donate.svg
|
|
131
|
-
|
|
132
232
|
[patreon]: https://www.patreon.com/ionicabizau
|
|
133
233
|
[amazon]: http://amzn.eu/hRo9sIZ
|
|
134
234
|
[paypal-donations]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVXDDLKKLQRJW
|
|
135
|
-
|
|
136
|
-
[license]: http://showalicense.com/?fullname=Ionic%C4%83%20Biz%C4%83u%20%3Cbizauionica%40gmail.com%3E%20(https%3A%2F%2Fionicabizau.net)&year=2016#license-mit
|
|
137
|
-
[website]: https://ionicabizau.net
|
|
138
|
-
[contributing]: /CONTRIBUTING.md
|
|
139
|
-
[docs]: /DOCUMENTATION.md
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spawno",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Easily work with child processes.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"directories": {
|
|
@@ -39,9 +39,11 @@
|
|
|
39
39
|
"menu/",
|
|
40
40
|
"cli.js",
|
|
41
41
|
"index.js",
|
|
42
|
+
"index.d.ts",
|
|
43
|
+
"package-lock.json",
|
|
42
44
|
"bloggify.js",
|
|
43
45
|
"bloggify.json",
|
|
44
46
|
"bloggify/"
|
|
45
47
|
],
|
|
46
48
|
"blah": {}
|
|
47
|
-
}
|
|
49
|
+
}
|