@nuxtjs/youch
Pretty error reporting for Node.js 🚀 (Modified for Nuxt.js & SSR Bundles)
Last updated 8 years ago by pi0 .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @nuxtjs/youch 
SYNC missed versions from official npm registry.

Youch!

Pretty error reporting for Node.js ???? (Modified for Nuxt.js & SSR Bundles)





NPM Version Build Status Downloads Stats Appveyor

Gitter Channel Trello Patreon

Youch is inspired by Whoops but with a modern design. Reading stack trace of the console slows you down from active development. Instead Youch print those errors in structured HTML to the browser.

Features

  1. HTML reporter
  2. JSON reporter, if request accepts a json instead of text/html.
  3. Sorted frames of error stack.

Installation

npm i --save @nuxtjs/youch

Basic Usage

Youch is used by AdonisJs and Nuxt.js, but it can be used by express or raw HTTP server as well.

const Youch = require('@nuxtjs/youch')
const http = require('http')

http.createServer(function (req, res) {

  // PERFORM SOME ACTION
  if (error) {
    const youch = new Youch(error, req)

    youch
    .toHTML()
    .then((html) => {
      res.writeHead(200, {'content-type': 'text/html'})
      res.write(html)
      res.end()
    })
  }

}).listen(8000)

Release History

Checkout CHANGELOG.md file for release history.

Meta

Checkout LICENSE.txt for license information Harminder Virk (Aman) - https://github.com/thetutlage

Current Tags

  • 4.2.3                                ...           latest (8 years ago)
  • 2.0.5                                ...           test (9 years ago)

12 Versions

  • 4.2.3                                ...           8 years ago
  • 4.2.2                                ...           8 years ago
  • 4.2.1                                ...           8 years ago
  • 4.2.0                                ...           8 years ago
  • 4.1.0                                ...           8 years ago
  • 4.0.1                                ...           8 years ago
  • 4.0.0                                ...           8 years ago
  • 3.1.0                                ...           9 years ago
  • 3.0.2                                ...           9 years ago
  • 3.0.1                                ...           9 years ago
  • 3.0.0                                ...           9 years ago
  • 2.0.5                                ...           9 years ago
Downloads
Today 0
This Week 1
This Month 1
Last Day 0
Last Week 1
Last Month 2
Dependencies (3)
Dev Dependencies (5)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |