
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@musicglue/mg-express
Advanced tools
Express stuff used on all musicglue services
Automatically sets up logging, error handling, error reporting, and a bunch of other goodness.
import setup from '@musicglue/mg-express';
import { UnprocessableEntityError } from '@musicglue/mg-express/lib/errors';
class UnmountableHorseError extends UnprocessableEntityError {
constructor(msg) {
super(msg);
this.name = 'UnmountableHorseError';
}
}
export default setup({
name: 'horse service',
bugsnag: 'abchorse',
amazonJSON: true, // enable amazonian horses
beforeHandlers: (app) => app.use(customHorseRelatedMiddleware()),
handlers: (app, wrap) => {
app.get('/horses', wrap(() =>
Horses.list().then(horses => ({ payload: horses }))));
app.post('/horses', wrap(({ body }) =>
Horses.create(body).then(horse => ({ payload: horse, status: 201 }))));
app.put('/horses/:horseId/mount', wrap(({ params }) => {
throw new UnmountableHorseError('woah there!');
}));
},
});
Name of the service. If provided, the service will serve this string on GET /.
Port to use if there's no process.env.PORT.
Bugsnag key. If provided and the service isn't in test mode, it'll setup bugsnag and attach it to the express app
[]A list of error names that bugsnag should ignore rather than report. e.g.
bugsnagIgnore: [
'BadRequestError',
'NotFoundError',
],
'/_____ping_____'Ping URL. If provided, the service will serve OK on get requests to this route.
'short'Morgan log format. Morgan logging is disabled in test mode.
'application/json'If the content-type header isn't set, default it to this. Set to something falsey to disable.
falseFlag to turn on the amazon json middleware. If the user-agent looks like an amazon one, it sets
the content-type header to 'application/json'.
nullProviding an object with key and url will bind a consul watcher to that subtree in a consul
KV store, allowing for dynamic config with the config module
bodyParser.json()Body parsing middleware to use by default. Pass something falsey to disable body parsing.
apiErrorHandler()Middleware for handling errors.
() => nullHook called before any default middleware are setup up, for custom things.
() => nullHook called after the first set of middleware are set up, but before the handlers are attached.
Hook called for attaching handlers. App is your express app, wrap is a useful function for
wrapping handlers to hook into the rest of mg-express's goodness. Handlers wrapped with wrap
should take one argument (the request object) and return a Promise of
{ payload: ?Object, status: ?number }. payload defaults to {}, status defaults to 200.
() => nullHook called after the handlers are attached, but before the error handling middleware.
() => nullHook called after the app is finished being set up, immediately before it starts listening.
() => nullHook called immediately before starting to listen
(app, port) => app.listen(port)Hook called instead of default listen directive to allow custom bindings, e.g. unix sockets
import * from '@musicglue/mg-express/lib/errors';
mg-express has an automatically generated error class for every HTTP response code listed on http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
These classes set the name and status required for compatibility with api-error-handler, the default error handler used by mg-express. To return one of these errors, throw it anywhere in your handler promise chain. If you want to return a non-200 status code without throwing one of these errors, have your handler promise resolve to an object with a status property with the status code you want to use.
FAQs
Express stuff used on all musicglue services
We found that @musicglue/mg-express demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.