over-armour

0.1.2 • Public • Published

Protect Functions and Classes from Crashes in Prod

npm version

Wrap an entire class in try/catch

Quickly protect an entire class from causing an exception with fortify method

Example Protection:

const iCanError = new CrashyApi()
const protector = new OverArmour()
 
// for PROD!
protector.fortify(iCanError) 
 
iCanError.failSauce('I will fail but not crash')
console.log('Still got here!')
 
const workingWithAsync = async () => {
  await iCanError.failSauceAsync('No try catches existed here!')
  console.log('Got here, too!')
}
workingWithAsync()
 
console.log('EOF!')

Readme

Keywords

none

Package Sidebar

Install

npm i over-armour

Weekly Downloads

1

Version

0.1.2

License

MIT

Last publish

Collaborators

  • gantman