Use prettierx and eslint native (#85)
[poolifier.git] / README.MD
index d9df3f2a948e683a7e5d09d830689f3578ad1040..465ab8d9a236c24871e8743bbab13bb578136ec2 100644 (file)
--- a/README.MD
+++ b/README.MD
@@ -7,6 +7,7 @@
 [![NODEP](https://img.shields.io/static/v1?label=dependencies&message=no%20dependencies&color=brightgreen
 )](https://img.shields.io/static/v1?label=dependencies&message=no%20dependencies&color=brightgreen
 )
+[![Gitter](https://badges.gitter.im/poolifier/community.svg)](https://gitter.im/poolifier/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
 
 <h2>Why Poolifier? </h2>
 Poolifier is used to perform heavy CPU bound tasks on nodejs servers, it implements thread pools ( yes, more thread pool implementations, so you can choose which one fit better for you ) using <a href="https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads">worker-threads </a>.<br>
@@ -27,6 +28,8 @@ Moreover you can execute your CPU tasks using an API designed to improve the <st
   <span> · </span>
   <a href="#contribute">Contribute</a>
   <span> · </span>
+  <a href="#Team">Team</a>
+  <span> · </span>
   <a href="#nv">Compatibility</a>
   <span> · </span>
   <a href="#license">License</a>
@@ -44,7 +47,7 @@ npm install poolifier --save
 ```
 <h2 id="usage">Usage</h2>
 
-You can implement a worker in a simple way , extending the class ThreadWorker : 
+You can implement a worker in a simple way , extending the class ThreadWorker :
 
 ```js
 'use strict'
@@ -81,7 +84,7 @@ pool.emitter.on('FullPool', () => console.log('Pool is full'))
 // so you can easy switch from one to another
 pool.execute({}).then(res => {
   console.log(res)
-}).catch .... 
+}).catch ....
 
 ```
 
@@ -136,8 +139,20 @@ But in general , <strong>always profile your application </strong>
 <h2 id="contribute">Contribute</h2>
 
 See guidelines [CONTRIBUTING](CONTRIBUTING.md) <br>
-Choose your task here <a href="https://github.com/pioardi/poolifier/projects/1"> 2.0.0</a>, propose an idea, a fix, an improvement. <br>  
+Choose your task here <a href="https://github.com/pioardi/poolifier/projects/1"> 2.0.0</a>, propose an idea, a fix, an improvement. <br>
+
+
+<h2 id="Team">Team</h2>
+<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
+<!-- prettier-ignore-start -->
+<!-- markdownlint-disable -->
+
+**Creator/Owner:**
+* [__Alessandro Pio Ardizio__](https://github.com/pioardi)
 
+***Contributors***
+* [__Shinigami92__](https://github.com/Shinigami92)
+* [__Jérôme Benoit__](https://github.com/jerome-benoit)
 
 <h2 id="license">License</h2>