A Fastify plugin that exposes threads.js functionality
- Node.js v14+
$ npm install fastify-threads
# install using npm
$ yarn add fastify-threads
# install using yarn
Using is as simple as requiring and registering it:
const fastify = require("fastify");
const threads = require("fastify-threads");
const app = fastify();
app.register(threads);
Now you have access to all threads.js functions.