nestworker 1.1.0 → 1.1.1
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 +8 -0
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|

|
|
2
2
|

|
|
3
|
+

|
|
3
4
|

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
10
|
+

|
|
11
|
+
|
|
4
12
|
|
|
5
13
|
# nestworker
|
|
6
14
|
A simple library that provides an abstraction for the Node.js `worker_threads` module. You can run your function in a dedicated thread by working with Promises.
|
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestworker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A lightweight tool built on top of Node.js worker_threads, enabling multithreading.",
|
|
5
5
|
"author": "Vahe Hakobyan",
|
|
6
6
|
"private": false,
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"licenses": [
|
|
9
|
+
{
|
|
10
|
+
"type": "MIT",
|
|
11
|
+
"url": "https://github.com/VaheHak/nestworker/blob/master/LICENSE"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
8
14
|
"scripts": {
|
|
9
15
|
"prebuild": "rimraf dist",
|
|
10
16
|
"build": "nest build",
|