Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
An asynchronous domain-based exception handler with long stack traces for node.js
A domain-based asynchronous try/catch with (optional) long stack traces for node.js optimized for V8.
#Install
npm install trycatch
#Use
var trycatch = require('trycatch')
trycatch(function() {
// do something error-prone
}, function(err) {
console.log(err.stack);
})
###Returning 500s on Server Request
http.createServer(function(req, res) {
trycatch(function() {
setTimeout(function() {
throw new Error('Baloney!');
}, 1000);
}, function(err) {
res.writeHead(500);
res.end(err.stack);
});
}).listen(8000);
Visit http://localhost:8000 and get your 500.
#Options Optional Long-Stack-Traces:
// Because trycatch shims all native I/O calls,
// it must be required & configured with 'long-stack-traces' before any other modules.
var trycatch = require('trycatch')
trycatch.configure({'long-stack-traces': true})
trycatch(fnTry, fnCatch)
Colors:
var trycatch = require('trycatch')
trycatch.configure({
colors: {
// 'none' or falsy values will omit
'node': 'none',
'node_modules': false,
'default': 'yellow'
}
})
trycatch(fnTry, fnCatch)
Advanced Formatting:
var trycatch = require('trycatch')
trycatch.configure({
format: function(line) {
// Alter final output (falsy values will omit)
return line
}
})
trycatch(fnTry, fnCatch)
#Basic Example
var trycatch = require("trycatch"),
_ = require('underscore')._
trycatch(function() {
_.map(['Error 1', 'Error 2'], function foo(v) {
setTimeout(function() {
throw new Error(v)
}, 10)
})
}, function(err) {
console.log("Async error caught!\n", err.stack);
});
See the /test
and examples
directories for more use cases.
FAQs
An asynchronous domain-based exception handler with long stack traces for node.js
The npm package trycatch receives a total of 482 weekly downloads. As such, trycatch popularity was classified as not popular.
We found that trycatch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.