Socket
Book a DemoInstallSign in
Socket

error-to-html

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

error-to-html

Converts an Error object to an HTML snippet

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

error-to-html

A simple module for rendering an Error object as an HTML snippet.

const errorToHtml = require('error-to-html');
const error = new Error('this is an error!');
const html = errorToHtml(error);

/*
<dl class="error-object">
  <dt class="error-term">message</dt>
  <dd class="error-message">this is an error!</dd>
  <dt class="error-term">stack</dt>
  <dd class="error-stack"><pre>Error: this is an error!
    at repl:1:13
    at REPLServer.defaultEval (repl.js:252:27)
    at bound (domain.js:287:14)
    at REPLServer.runBound [as eval] (domain.js:300:12)
    at REPLServer.<anonymous> (repl.js:417:12)
    at emitOne (events.js:82:20)
    at REPLServer.emit (events.js:169:7)
    at REPLServer.Interface._onLine (readline.js:210:10)
    at REPLServer.Interface._line (readline.js:549:8)
    at REPLServer.Interface._ttyWrite (readline.js:826:14)</pre></dd>
</dl>
*/
const errorToHtml = require('error-to-html').errorToHTMLPromise;
const error = new Error('this is an error!');

errorToHtml(error)
  .then(console.log)
  .catch((e) => {
    console.error('You did not supply an error object.');
    console.error(e);
  });

License

MIT License

Keywords

error

FAQs

Package last updated on 03 Mar 2016

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