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

hapi-dev-errors

Package Overview
Dependencies
Maintainers
2
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hapi-dev-errors - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

15

CHANGELOG.md
# Changelog
## Version [3.0.1](https://github.com/fs-opensource/hapi-dev-errors/compare/v3.0.0...v3.0.1) (2018-08-21)
- `update` readme: quick navigation and logo size fix for small screens
## Version [3.0.0](https://github.com/fs-opensource/hapi-dev-errors/compare/v2.3.0...v3.0.0) (2018-07-17)

@@ -24,5 +28,7 @@ - `add` Youch error view as the default error view

## Version [2.2.0](https://github.com/fs-opensource/hapi-dev-errors/compare/v2.1.0...v2.2.0) (2018-06-02)
- `add` JSON response for CLI requests (cURL, Postman, wget) (thank you @pi0)
## Version [2.1.0](https://github.com/fs-opensource/hapi-dev-errors/compare/v2.0.1...v2.1.0) (2018-02-12)

@@ -33,2 +39,3 @@ - `add` status code to Youch error and show it in the view

## Version [2.0.1](https://github.com/fs-opensource/hapi-dev-errors/compare/v2.0.0...v2.0.1) (2017-11-06)

@@ -38,5 +45,7 @@ - `update` dependencies to latest stable releases

## Version [2.0.0](https://github.com/fs-opensource/hapi-dev-errors/compare/v2.0.0-rc.1...v2.0.0) (2017-11-06)
- `update` readme: requirements and examples
## Version [2.0.0-rc.1](https://github.com/fs-opensource/hapi-dev-errors/compare/v1.3.2...v2.0.0-rc.1) (2017-10-27)

@@ -46,2 +55,3 @@ - `update` code to support hapi v17

## Version [1.3.2](https://github.com/fs-opensource/hapi-dev-errors/compare/v1.3.1...v1.3.2) (2017-10-18)

@@ -51,2 +61,3 @@ - `update` code formatting to ESLint styling for hapi, based on `eslint-config-hapi`

## Version [1.3.1](https://github.com/fs-opensource/hapi-dev-errors/compare/v1.3.0...v1.3.1) (2017-10-17)

@@ -57,5 +68,7 @@ - `remove` editor config for code formatting (`.editorconfig` file)

## Version [1.3.0](https://github.com/fs-opensource/hapi-dev-errors/compare/v1.2.0...v1.3.0) (2017-10-12)
- `add` handling of promise rejections, like `reply(Promise.reject(new Error('')))` (Thank you [Tafari](https://github.com/tafarij))
## Version [1.2.0](https://github.com/fs-opensource/hapi-dev-errors/compare/v1.1.0...v1.2.0) (2017-08-18)

@@ -68,5 +81,7 @@ - `add` new option `useYouch` (boolean) to delegate the error handling to Youch and use its view

## Version [1.1.0](https://github.com/fs-opensource/hapi-dev-errors/compare/v1.0.0...v1.1.0) (2017-06-14)
- `optimize` plugin registration: abort early if `showErrors` is false, don’t get the template from filesystem and don’t hook the the request lifecycle extension point
## Version 1.0.0 (2017-06-14)

@@ -73,0 +88,0 @@ - reply developer friends error details by rendering a web view for browser based requests or via JSON for REST requests

4

lib/index.js

@@ -145,4 +145,4 @@ 'use strict'

register,
pkg: require('../package.json'),
once: true
once: true,
pkg: require('../package.json')
}
{
"name": "hapi-dev-errors",
"description": "Return better error details and skip the look at command line to catch the issue.",
"version": "3.0.0",
"version": "3.0.1",
"author": "Future Studio <info@futurestud.io>",

@@ -6,0 +6,0 @@ "bugs": {

@@ -1,10 +0,25 @@

<p align="center">
<img height="256" src="https://github.com/fs-opensource/hapi-dev-errors/blob/master/media/hapi-dev-errors.png?raw=true" alt="hapi-dev-errors logo">
</p>
<p align="center">
<div align="center">
<img width="471" style="max-width:100%;" src="https://github.com/fs-opensource/hapi-dev-errors/blob/master/media/hapi-dev-errors.png?raw=true" alt="hapi-dev-errors logo">
<br/>
<br/>
<p>
A hapi plugin to show server errors in the browser or terminal.
</p>
<br/>
<p>
<a href="#installation"><strong>Installation</strong></a> ·
<a href="#usage"><strong>Usage</strong></a> ·
<a href="#plugin-registration-options"><strong>Plugin Options</strong></a>
</p>
<br/>
<br/>
<p>
<a href="https://travis-ci.org/fs-opensource/hapi-dev-errors"><img src="https://camo.githubusercontent.com/9f56ef242c6f588f74f39f0bd61c1acd34d853af/68747470733a2f2f7472617669732d63692e6f72672f66732d6f70656e736f757263652f686170692d67656f2d6c6f636174652e7376673f6272616e63683d6d6173746572" alt="Build Status" data-canonical-src="https://travis-ci.org/fs-opensource/hapi-dev-errors.svg?branch=master" style="max-width:100%;"></a>
<a href="https://snyk.io/test/github/fs-opensource/hapi-dev-errors"><img src="https://snyk.io/test/github/fs-opensource/hapi-dev-errors/badge.svg" alt="Known Vulnerabilities" data-canonical-src="https://snyk.io/test/github/fs-opensource/hapi-dev-errors" style="max-width:100%;"></a>
<a href="https://www.npmjs.com/package/hapi-dev-errors"><img src="https://img.shields.io/npm/v/hapi-dev-errors.svg" alt="hapi-dev-errors Version" data-canonical-src="https://img.shields.io/npm/v/hapi-dev-errors.svg" style="max-width:100%;"></a>
</p>
</p>
<p>
<em>Follow <a href="http://twitter.com/marcuspoehls">@marcuspoehls</a> for updates!</em>
</p>
</div>

@@ -131,3 +146,3 @@ ------

- [hapi tutorial series](https://futurestud.io/tutorials/hapi-get-your-server-up-and-running) with 90+ tutorials
- [hapi tutorial series](https://futurestud.io/tutorials/hapi-get-your-server-up-and-running) with 100+ tutorials
- [Youch](https://github.com/poppinss/youch) - Pretty error reporting for Node.js

@@ -134,0 +149,0 @@ - [Youch terminal](https://github.com/poppinss/youch-terminal) - Pretty error reporting on your terminal

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