poolifier
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "poolifier", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Library on top of node js worker threads that implement various worker pools type", | ||
@@ -17,3 +17,3 @@ "main": "index.js", | ||
"type": "git", | ||
"url": "git+https://github.com/pioardi/node-thread-pool.git" | ||
"url": "git+https://github.com/pioardi/poolifier.git" | ||
}, | ||
@@ -38,5 +38,5 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/pioardi/node-thread-pool/issues" | ||
"url": "https://github.com/pioardi/poolifier/issues" | ||
}, | ||
"homepage": "https://github.com/pioardi/node-thread-pool#readme", | ||
"homepage": "https://github.com/pioardi/poolifier#readme", | ||
"devDependencies": { | ||
@@ -43,0 +43,0 @@ "benchmark": "^2.1.4", |
@@ -36,3 +36,3 @@ # Node Thread Pool :arrow_double_up: :on: | ||
``` | ||
npm install @pioardi/node-thread-pool --save | ||
npm install poolifier --save | ||
``` | ||
@@ -45,3 +45,3 @@ <h2 id="usage">Usage</h2> | ||
'use strict' | ||
const { ThreadWorker } = require('@pioardi/node-thread-pool') | ||
const { ThreadWorker } = require('poolifier') | ||
@@ -66,3 +66,3 @@ function yourFunction (data) { | ||
'use strict' | ||
const { FixedThreadPool, DynamicThreadPool } = require('@pioardi/node-thread-pool') | ||
const { FixedThreadPool, DynamicThreadPool } = require('poolifier') | ||
@@ -69,0 +69,0 @@ // a fixed thread pool |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31651