
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
cond
is hosted at Github. mona
is a
public domain work, dedicated using
CC0 1.0. Feel free to do
whatever you want with it.
$ npm install cond
or
$ bower install cond
Execute the following in a browser session, with developer tools open, and follow the instructions:
var availableFlavors = ["chocolate", "vanilla", "mint chocolate chip"];
function getIceCream(flavor) {
if (availableFlavors.indexOf(flavor) !== -1) {
return flavor + " ice cream ゲットー!";
} else {
// Just like throw new Error("something"), but we provide a way
// the user can recover from it.
return cond.error("Sorry, that flavor is not available", [
"different-flavor", "Try a different flavor", getIceCream
], [
"add-flavor", "Add this flavor to available ones and retry", function() {
availableFlavors.push(flavor);
return getIceCream(flavor);
}
]);
}
}
console.log(getIceCream("coffee"));
console.log("I really like this flavor!");
// In the console, do:
// > showRecoveries();
// > recover(0, "chocolate");
// You can also access recoveries programmatically:
console.log(cond.handlerBind(function() {
return getIceCream("bubblegum");
}, [Error, function(e) { return cond.recover("add-flavor"); }]));
cond
is a JavaScript implementation of
Common Lisp's condition system,
a system for handling errors and other conditions of interest that handles
signals at the call site, before the stack is unwound -- allowing you to repair
or alter what happens at the callsite, and continuing executing as if nothing
had been signaled/thrown.
FAQs
Restartable error handling system
We found that cond 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.