@feathersjs/hooks
brings middleware to any async JavaScript or TypeScript function. It allows to create composable and reusable workflows that can add
- Logging
- Profiling
- Validation
- Caching/Debouncing
- Permissions
- Data pre- and postprocessing
- etc.
to a function or class without having to change its original code while also keeping everything cleanly separated and testable. See the âš“ release post for a quick overview.
npm install @feathersjs/hooks --save
yarn add @feathersjs/hooks
import { hooks } from 'https://unpkg.com/@feathersjs/hooks@latest/deno/index.ts';
Note: You might want to replace
latest
with the actual version you want to use (e.g.https://unpkg.com/@feathersjs/hooks@^0.2.0/deno/index.ts
)
@feathersjs/hooks
is compatible with any module loader like Webpack and can be included in the browser directly via:
<script type="text/javascript" src="//unpkg.com/@feathersjs/hooks@^0.2.0/dist/hooks.js"></script>
Which will make a hooks
global variable available.
The following example makes sure that the name
is valid and logs information about a function call:
const { hooks } = require('@feathersjs/hooks');
const logRuntime = async (context, next) => {
const start = new Date().getTime();
await next();
const end = new Date().getTime();
console.log(`Function '${context.method || '[no name]'}' returned '${context.result}' after ${end - start}ms`);
}
const validateName = async (context, next) => {
const [ name ] = context.arguments;
if (!name || name.trim() === '') {
throw new Error('Name is not valid');
}
// Always has to be called
await next();
}
// Hooks can be used with a function like this:
const sayHello = hooks(async name => {
return `Hello ${name}!`;
}, [
logRuntime,
validateName
]);
// And on an object or class like this
class Hello {
async sayHi (name) {
return `Hi ${name}`
}
}
hooks(Hello, {
sayHi: [
logRuntime,
validateName
]
});
(async () => {
console.log(await sayHello('David'));
// The following would throw an error
// await sayHello(' ');
const hi = new Hello();
console.log(await hi.sayHi('Dave'));
})();
In addition to the normal JavaScript use, with the experimentalDecorators
option in tsconfig.json
enabled
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
Hooks can be registered using a decorator:
import { hooks, HookContext, NextFunction } from '@feathersjs/hooks';
const logRuntime = async (context: HookContext, next: NextFunction) => {
const start = new Date().getTime();
await next();
const end = new Date().getTime();
console.log(`Function '${context.method || '[no name]'}' returned '${context.result}' after ${end - start}ms`);
}
const validateName = async (context: HookContext, next: NextFunction) => {
const [ name ] = context.arguments;
if (!name || name.trim() === '') {
throw new Error('Name is not valid');
}
// Always has to be called
await next();
}
class Hello {
@hooks([
logRuntime,
validateName
])
async sayHi (name: string) {
return `Hi ${name}`;
}
}
(async () => {
const hi = new Hello();
console.log(await hi.sayHi('David'));
// The following would throw an error
// console.log(await hi.sayHi(' '));
})();
Middleware functions (or hook functions) take a context
and an asynchronous next
function as their parameters. The context
contains information about the function call (like the arguments, the result or this
context) and the next
function can be called to continue to the next hook or the original function.
A middleware function can do things before calling await next()
and after all following middleware functions and the function call itself return. It can also try/catch
the await next()
call to handle and modify errors. This is the same control flow that the web framework KoaJS uses for handling HTTP requests and response.
Each hook function wraps around all other functions (like an onion). This means that the first registered middleware function will run first before await next()
and as the very last after all following hooks.
The following example:
const { hooks } = require('@feathersjs/hooks');
const sayHello = async message => {
console.log(`Hello ${message}!`)
};
const hook1 = async (ctx, next) => {
console.log('hook1 before');
await next();
console.log('hook1 after')
}
const hook2 = async (ctx, next) => {
console.log('hook2 before');
await next();
console.log('hook2 after')
}
const hook3 = async (ctx, next) => {
console.log('hook3 before');
await next();
console.log('hook3 after')
}
const sayHelloWithHooks = hooks(sayHello, [
hook1,
hook2,
hook3
]);
(async () => {
await sayHelloWithHooks('David');
})();
Would print:
hook1 before
hook2 before
hook3 before
Hello David
hook3 after
hook2 after
hook1 after
Instead of an array of middleware, an object with the following options can be passed:
middleware
- The array of middleware functionscontext
(optional) - A function(self: any, fn: any, args: any[], context: HookContext) => HookContext
that updates the existingcontext
with information about the function call like thethis
reference (self
), the wrapped function (fn
) and the function call arguments (args
). Usually used for named parameters.collect
(optional) - A function(self: any, fn: any, args: any[]) => Middleware[]
that returns all middleware functions for a function call. Usually does not need to be customized.
const { hooks, withParams } = require('@feathersjs/hooks');
const sayHelloWithHooks = hooks(sayHello, {
middleware: [
hook1,
hook2,
hook3
],
context: withParams('name')
});
(async () => {
await sayHelloWithHooks('David');
})();
The hook context
in a middleware function is an object that contains information about the function call.
The default properties available are:
context.arguments
- The arguments of the function as an arraycontext.method
- The name of the function (if it belongs to an object or class)context.self
- Thethis
context of the function being called (may not always be available e.g. for top level arrow functions)context.result
- The result of the method callcontext[name]
- Value of a named parameter when using named arguments
By default, the function call arguments will be available as an array in context.arguments
. The values can be modified to change what is passed to the original function call:
const { hooks } = require('@feathersjs/hooks');
const sayHello = async (firstName, lastName) => {
return `Hello ${firstName} ${lastName}!`;
};
const wrappedSayHello = hooks(sayHello, [
async (context, next) => {
// Replace the `lastName`
context.arguments[1] = 'X';
await next();
}
]);
(async () => {
console.log(await wrappedSayHello('David', 'L')); // Hello David X
})();
It is also possible to turn the arguments into named parameters. In the above example we probably want to have context.firstName
and context.lastName
available. To do this, the context
option can be used with withParams
like this:
const { hooks, withParams } = require('@feathersjs/hooks');
const sayHello = async (firstName, lastName) => {
return `Hello ${firstName} ${lastName}!`;
};
const wrappedSayHello = hooks(sayHello, {
context: withParams('firstName', 'lastName'),
middleware: [
async (context, next) => {
// Now we can modify `context.lastName` instead
context.lastName = 'X';
await next();
}
]
});
(async () => {
console.log(await wrappedSayHello('David', 'L')); // Hello David X
})();
Note: When using named parameters,
context.arguments
is read only.
withParams
also allows to define default values with an array ([name, defaultValue]
) for each parameter, like this:
const { hooks, withParams } = require('@feathersjs/hooks');
const sayHello = async (firstName, lastName, params = {}) => {
return `Hello ${firstName} ${lastName}!`;
};
const wrappedSayHello = hooks(sayHello, {
context: withParams('firstName', 'lastName', ['params', {}]),
middleware: [
async (context, next) => {
// `context.params` is an empty object here
await next();
}
]
});
(async () => {
console.log(await wrappedSayHello('David', 'L')); // Hello David X
})();
Note: Even if your original function contains a default value, it is important to specify it with
withParams
because the middleware runs before and the value will beundefined
without default value inwithParams
.
In a hook function, context.result
can be
- Set before calling
await next()
to skip the original function call. Other hooks will still run. - Modified after calling
await next()
to modify what is being returned by the function.
See the cache example for how this can be used.
The original function without any hooks is available as fn.original
:
const { hooks } = require('@feathersjs/hooks');
const emphasize = async (context, next) => {
await next();
context.result += '!!!';
};
const sayHello = hooks(async name => `Hello ${name}`, [ emphasize ]);
const o = hooks({
async sayHi(name) {
return `Hi ${name}`;
}
}, {
sayHi: [ emphasize ]
});
(async () => {
console.log(await sayHello.original('Dave')); // Hello Dave
// Originals on object need to be called with an explicit `this` context
console.log(await o.sayHi.original.call(o, 'David'))
})();
To add additional data to the context an instance of HookContext
can be passed as the last argument of a hook-enabled function call. In that case, the up to date context object with all the information (like context.result
) will be returned:
const { hooks, HookContext } = require('@feathersjs/hooks');
const customContextData = async (context, next) => {
console.log('Custom context message is', context.message);
context.customProperty = 'Hi';
await next();
}
const sayHello = hooks(async message => {
return `Hello ${message}!`;
}, [ customContextData ]);
const customContext = new HookContext({
message: 'Hi from context'
});
(async () => {
const finalContext = await sayHello('Dave', customContext);
console.log(finalContext);
})();
hooks(fn, middleware[]|settings)
returns a new function that wraps fn
with middleware
. The following example shows how a custom context
option could be used:
const { hooks } = require('@feathersjs/hooks');
const sayHello = async name => {
return `Hello ${name}!`;
};
const wrappedSayHello = hooks(sayHello, {
middleware: [
async (context, next) => {
console.log(context.someProperty);
await next();
}
],
context (self, fn, args, context) {
context.self = self;
context.arguments = args;
context.someProperty = 'Set from updateContext';
return context;
}
});
(async () => {
console.log(await wrappedSayHello('David'));
})();
Important: A wrapped function will always return a Promise even it was not originally
async
.
hooks(obj, middlewareMap)
takes an object and wraps the functions indicated in middlewareMap
. It will modify the existing Object obj
:
const { hooks, withParams } = require('@feathersjs/hooks');
const o = {
async sayHi (name) {
return `Hi ${name}!`;
}
async sayHello (name) {
return `Hello ${name}!`;
}
}
hooks(o, {
sayHello: [ logRuntime ],
sayHi: [ logRuntime ]
});
// With `context` and named parameters
hooks(o, {
sayHello: {
middleware: [ logRuntime ],
context: withParams('name')
},
sayHi: {
middleware: [ logRuntime ],
context: withParams('name')
}
});
Hooks can also be registered at the object level which will run before any specific hooks on a hook enabled function:
const { hooks } = require('@feathersjs/hooks');
const o = {
async sayHi (name) {
return `Hi ${name}!`;
}
async sayHello (name) {
return `Hello ${name}!`;
}
}
// This hook will run first for every hook enabled method on the object
hooks(o, [
async (context, next) => {
console.log('Top level hook');
await next();
}
]);
hooks(o, {
sayHi: [ logRuntime ]
});
Similar to object hooks, class hooks modify the class (or class prototype). Just like for objects it is possible to register hooks that are global to the class or object. Registering hooks also works with inheritance.
Note: Object or class level global hooks will only run if the method itself has been enabled for hooks. This can be done by registering hooks with an empty array.
const { hooks } = require('@feathersjs/hooks');
class HelloSayer {
async sayHello (name) {
return `Hello ${name}`;
}
}
class HappyHelloSayer extends HelloSayer {
async sayHello (name) {
const baseHello = await super.sayHello(name);
return baseHello + '!!!!! :)';
}
}
// To add hooks at the class level we need to use the prototype object
hooks(HelloSayer.prototype, [
async (context, next) => {
console.log('Hook on HelloSayer');
await next();
}
]);
hooks(HappyHelloSayer.prototype, [
async (context, next) => {
console.log('Hook on HappyHelloSayer');
await next();
}
]);
// Methods can also be wrapped directly on the class
hooks(HelloSayer.prototype, {
sayHello: [async (context, next) => {
console.log('Hook on HelloSayer.sayHello');
await next();
}]
});
(async () => {
const happy = new HappyHelloSayer();
console.log(await happy.sayHello('David'));
})();
With decorators and inheritance
import { hooks, withParams, HookContext, NextFunction } from '@feathersjs/hooks';
@hooks([
async (context: HookContext, next: NextFunction) => {
console.log('Hook on HelloSayer');
await next();
}
])
class HelloSayer {
@hooks({
context: withParams('name'),
middleware: [
async (context: HookContext, next: NextFunction) => {
console.log('Hook on HelloSayer.sayHello');
await next();
}
]
})
async sayHello (name: string) {
return `Hello ${name}`;
}
async otherMethod () {
return 'This will not run any hooks';
}
}
@hooks([
async (context: HookContext, next: NextFunction) => {
console.log('Hook on HappyHelloSayer');
await next();
}
])
class HappyHelloSayer extends HelloSayer {
async sayHello (name: string) {
const message = await super.sayHello(name);
return `${message}!!!!! :)`;
}
}
(async () => {
const happy = new HappyHelloSayer();
console.log(await happy.sayHello('David'));
})();
Note: Decorators only work on classes and class methods, not on functions. Standalone (arrow) functions require the JavaScript function style hook registration.
-
Hooks can be registered at any time by calling
hooks
again but registration should be kept in one place for better visibility. -
Decorators make the flow even more visible by putting it right next to the code the hooks are affecting.
-
The
context
will always be the same object in the hook flow. You can set any property on it. -
If a parameter is an object, modifying that object will change the original parameter. This can cause subtle issues that are difficult to debug. Using the spread operator to add the new property and replacing the context property helps to avoid many of those problems:
const updateQuery = async (context, next) => { // NOT: context.query.newProperty = 'something'; // Instead context.query = { ...context.query, active: true } await next(); } const findUser = hooks(async query => { return collection.find(query); }, { context: withParams('query'), middleware: [ updateQuery ] });
The following example is a simple hook that caches the results of a function call and uses the cached value. It will clear the cache every 5 seconds. This is useful for any kind of expensive method call like an external HTTP request:
const { hooks } = require('@feathersjs/hooks');
const cache = () => {
let cacheData = {};
// Reset entire cache every 5 seconds
setInterval(() => {
cacheData = {};
}, 5000);
return async (context, next) => {
const key = JSON.stringify(context);
if (cacheData[key]) {
// Setting context.result before `await next()`
// will skip the (expensive function call) and
// make it return the cached value
context.result = cacheData[key];
}
await next();
// Set the cached value to the result
cacheData[key] = context.result;
}
}
const getData = hooks(async url => {
return axios.get(url);
}, [ cache() ]);
await getData('http://url-that-takes-long-to-respond');
When passing e.g. a user
object to a function call, hooks allow for a better separation of concerns by handling permissions in a hook:
const checkPermission = name => async (context, next) => {
if (!context.user.permissions.includes(name)) {
throw new Error(`User does not have ${name} permission`);
}
await next();
}
const deleteInvoice = hooks(async (id, user) => {
return collection.delete(id);
}, [ checkPermission('admin') ], withParams('id', 'user'));
The above examples can both be useful for speeding up and locking down existing GraphQL resolvers:
const { hooks, withParams } = require('@feathersjs/hooks');
const checkPermission = name => async (ctx, next) => {
const { context } = ctx;
if (!context.user.permissions.includes(name)) {
throw new Error(`User does not have ${name} permission`);
}
await next();
}
const resolvers = {
Query: {
human: hooks(async (obj, args, context, info) => {
return context.db.loadHumanByID(args.id).then(
userData => new Human(userData)
)
}, {
context: withParams('obj', 'args', 'context', 'info'),
middleware: [
cache(),
checkPermission('admin')
]
})
}
}
Copyright (c) 2020
Licensed under the MIT license.