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

raven

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

raven - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

4

package.json

@@ -5,3 +5,3 @@ {

"keywords": ["raven", "sentry", "python"],
"version": "0.5.2",
"version": "0.5.3",
"repository": "git://github.com/mattrobenolt/raven-node.git",

@@ -19,3 +19,3 @@ "author": "Matt Robenolt <matt@ydekproductions.com>",

"node-uuid": "1.4.0",
"raw-stacktrace": "0.0.2"
"raw-stacktrace": "1.0.0"
},

@@ -22,0 +22,0 @@ "devDependencies": {

@@ -162,3 +162,21 @@ # Raven [![Build Status](https://secure.travis-ci.org/mattrobenolt/raven-node.png?branch=master)](http://travis-ci.org/mattrobenolt/raven-node)

## Coffeescript
In order to use raven-node with coffee-script or another library which overwrites
Error.prepareStackTrace you might run into the exception "Traceback does not support Error.prepareStackTrace being defined already."
In order to not have raven-node (and the underlying raw-stacktrace library) require
Traceback you can pass your own stackFunction in the options. For example:
```javascript
var client = new raven.Client('{{ SENTRY_DSN }}', { stackFunction: {{ Your stack function }}});
```
So for example:
```javascript
var client = new raven.Client('{{ SENTRY_DSN }}', {
stackFunction: Error.prepareStackTrace
});
```
## Support
You can find me on IRC. I troll in `#sentry` on `freenode`.
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