5.0.0 • Published 5 months ago

fastify-piscina v5.0.0

Weekly downloads
10
License
MIT
Repository
github
Last release
5 months ago

fastify-piscina - A Piscina plugin for Fastify

Example

const fastify = require('fastify')();
const { resolve} = require('path');

fastify.register(require('fastify-piscina'), {
  // Piscina Options object. See Piscina docs for details
  filename: resolve(__dirname, 'worker.js')
});

// Declare a route
fastify.get('/', async (request, reply) => {
  reply.send({ hello: `world [${await fastify.runTask({ a: 1, b: 2 })}]` });
});

// Run the server!
fastify.listen(3000, function (err, address) {
  if (err) {
    fastify.log.error(err);
    process.exit(1);
  }
  fastify.log.info(`server listening on ${address}`);
});

Once registered, the plugin decorates the fastify instance with two new properties:

  • fastify.piscina {Piscina} The Piscina instance.
  • fastify.runTask() {Function} The Piscina runTask function.

See the Piscina docs for more information.

The Team

Acknowledgements

Piscina development is sponsored by NearForm Research.

5.0.0

5 months ago

4.0.0

3 years ago

3.0.0

3 years ago

2.0.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago