0.1.0 • Published 10 years ago

cool-error v0.1.0

Weekly downloads
4
License
-
Repository
-
Last release
10 years ago

cool-error

A shim module for wrapping error in a more elegant way!

###Install

  npm install cool-error

###Usage

####code

  var toss = require('cool-error')

  // equals `throw new Error('error!')`
  toss('error!')

  // when the second arg specified to true
  // it will log the error message before throwing an error instance
  toss('error!', true)

  // json format supported
  toss({statusCode: 404, msg: 'Not Found'})

####colors Feel free to use console.log('xxx'.red) in your code because colors is wrapped underlying.