X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=8cea8d6279757d3d9cbc75fa715a3341df1171bd;hb=2e8cfbb7f3b5316a42d15493cfdfee4faeaece46;hp=68e9fe6589ff64573e18eb25a3bd48a8b3ba7650;hpb=65542a35fd6759cddb82167dd4c47f9bed843ebf;p=poolifier.git diff --git a/README.md b/README.md index 68e9fe65..8cea8d62 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,7 @@ npm install poolifier --save You can implement a [worker_threads](https://nodejs.org/api/worker_threads.html#class-worker) worker in a simple way by extending the class _ThreadWorker_: ```js -'use strict' -const { ThreadWorker } = require('poolifier') +import { ThreadWorker } from 'poolifier' function yourFunction(data) { // this will be executed in the worker thread, @@ -107,8 +106,7 @@ module.exports = new ThreadWorker(yourFunction, { Instantiate your pool based on your needs : ```js -'use strict' -const { DynamicThreadPool, FixedThreadPool, PoolEvents, availableParallelism } = require('poolifier') +import { DynamicThreadPool, FixedThreadPool, PoolEvents, availableParallelism } from 'poolifier' // a fixed worker_threads pool const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', {