Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

diet-500

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diet-500

Manually send 500 server errors in Diet.js

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

diet-500

Emergency Exits for Diet.js

If you're trying to use Promises in Diet you may have noticed that you can't just throw an error to trigger a 500 Sever Error, since it ends up swallowed by the Promise chain. As far as I can tell, there's no way to directly call the error route in Diet.js.

This module provides middleware to add a method to the signal object ($) to throw an error out of a Promise chain.

Installation

npm install --save diet-500

Note that in modern versions of NPM (>= 5) you don't actually need the --save flag.

Usage

const server      = require('diet')
const serverError = require('diet-500')

app = server()

app.listen('http://localhost:8888')

app.header(serverError)

app.get('/', function ($) {
	return Promise.resolve().then(() => {
		throw new Error('Time to die!')
	}).catch(err => {
		$.err(err)
	})
})

By default, the method attached to the signal is err. You can specify a different method name if you like.

const server      = require('diet')
const serverError = require('diet-500').methodName('error500')

app = server()

app.listen('http://localhost:9999')

app.header(serverError)

app.get('/', function ($) {
	return Promise.reject(new Error('GOING DOWN'))
	.catch(err => {
		$.error500(err)
	})
})

Keywords

FAQs

Package last updated on 12 Mar 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc