From: Alessandro Pio Ardizio Date: Wed, 22 Jan 2020 22:45:28 +0000 (+0100) Subject: Update README.MD X-Git-Tag: v0.0.1-final~2 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=d2eb49649da7384396a99578d8104cf6b9ac5a3a;p=poolifier.git Update README.MD --- diff --git a/README.MD b/README.MD index 249d7702..42ffe537 100644 --- a/README.MD +++ b/README.MD @@ -41,7 +41,7 @@ You can implement a worker in a simple way , extending the class ThreadWorker : ```js 'use strict' -const { ThreadWorker } = require('@pioardi/node-thread-pool') +const { ThreadWorker } = require('poolifier') function yourFunction (data) { // this will be executed in the worker thread, @@ -61,7 +61,7 @@ Instantiate your pool based on your needed : ```js 'use strict' -const { FixedThreadPool, DynamicThreadPool } = require('@pioardi/node-thread-pool') +const { FixedThreadPool, DynamicThreadPool } = require('poolifier') // a fixed thread pool const pool = new FixedThreadPool(15,