Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
babel-plugin-contracts
Advanced tools
This is a Babel plugin for design by contract for JavaScript.
Design by contract is a very powerful technique for writing robust software, it can be thought of as a formal but convenient method for specifying assertions. Instead of the developer documenting their assumptions in comments, or worse, not documenting them at all, Design by Contract gives them a way to express their assumptions in a convenient syntax, and have those assumptions validated at runtime.
Contracts come in three flavours:
Each statement in a contract must evaluate to true for the contract to be valid. If a contract fails, an error will be thrown.
Preconditions are usually used to validate the arguments to a function, or the state of the system before the main function body executes.
Postconditions are used to validate the result or side effects of the function.
Invariants are used to ensure that an assumption holds true for the duration of the function.
Although not strictly a contract, assertions are also supported.
Neither invariants, assertions, preconditions or postconditions themselves may have side-effects, e.g. it is not possible to assign a new value to a variable from within a contract.
Purity within contracts is enforced as much as possible by the plugin, but it is still possible for a programmer to circumvent, by calling an impure function from within the precondition or postcondition. This is strongly discouraged.
This plugin implements Design by Contract by abusing repurposing JavaScript labels. Labels are a very rarely used feature of JavaScript, and a nice thing about them is that if a label is specified but not used, it is simply ignored by the JavaScript engine.
This allows us to break up our function body into labeled sections, without affecting the result or behavior of the function. The plugin then retrieves these special labeled sections and transpiles them into contracts.
Install via npm.
npm install --save-dev babel-plugin-contracts
Then, in your babel configuration (usually in your .babelrc
file), add "contracts"
to your list of plugins:
{
"plugins": [
["contracts", {
"env": {
"production": {
"strip": true
}
}
}]
]
}
The above example configuration will remove all contracts when NODE_ENV=production
, which is often preferable for performance reasons.
You can customize the names of the labels and identifiers by specifying a names
option, e.g.
{
"plugins": [
["contracts", {
"names": {
"assert": "assert",
"precondition": "pre",
"postcondition": "post",
"invariant": "invariant",
"return": "it",
"old": "old"
}
}]
]
}
The contract for the following function specifies that the first argument must always be a string.
function warn (message) {
pre: typeof message === 'string';
return 'Warning!\n' + message;
}
If we call this function with a non string argument, an error will be thrown.
The following function specifies that the result of the function must always be an array containing more than one element.
Note: Post-conditions introduce a special variable,
it
which refers to the result of the function.
function items (a, b) {
let c = [];
if (a) {
c.push(a);
}
if (b) {
c.push(b);
}
return c;
post: {
Array.isArray(it);
it.length > 0;
}
}
If we call this function without arguments, the post-condition will fail and an error will be thrown.
Note: preconditions and postconditions can appear in any order directly within the function body.
Postconditions can also refer to the state of the world at the entry point of the function, which is extremely useful when verifying the results of functions with side effects. For this, we use a pseudo-function called old()
which takes a single argument - the reference we want to capture, for example:
function applyDiscount (cart, amount) {
pre: {
!cart.hasDiscount, "Discounts can only be applied once";
cart.total >= amount, "Cannot discount to less than zero.";
}
post: {
cart.total === old(cart.total) - amount;
}
cart.total -= amount;
cart.hasDiscount = true;
// some more complicated stuff goes here...
return cart;
}
function withdraw (fromAccount, amount) {
pre: {
typeof amount === 'number';
amount > 0;
fromAccount.balance - amount > -fromAccount.overdraftLimit;
}
post: {
fromAccount.balance - amount > -fromAccount.overdraftLimit;
}
fromAccount.balance -= amount;
}
Invariants run at the beginning and end of a block. Using invariants we can simplify the above example.
function withdraw (fromAccount, amount) {
pre: {
typeof amount === 'number';
amount > 0;
}
invariant: {
fromAccount.balance - amount > -fromAccount.overdraftLimit;
}
fromAccount.balance -= amount;
}
Assertions verify that something is truthy and throw an error if the assertion fails. They run where they are specified:
function add (a, b) {
const result = a + b;
assert: typeof result === 'number';
return result;
}
or, with multiple:
function addAndSquare (a, b) {
let result = a + b;
assert: {
typeof result === 'number';
!isNaN(result);
}
result *= result;
assert: result < Math.pow(2, 32), "Must be within an acceptable range";
return result;
}
Often it's nice to provide an error message for the contract that failed, for example:
function withdraw (fromAccount, amount) {
pre: {
typeof amount === 'number', "Second argument must be a number";
amount > 0, "Cannot withdraw a zero or negative amount";
fromAccount.balance - amount > -fromAccount.overdraftLimit, "Must not exceed overdraft limit";
}
post: {
fromAccount.balance - amount > -fromAccount.overdraftLimit, "Must not exceed overdraft limit";
}
fromAccount.balance -= amount;
}
Now if a contract fails, the error object will have a descriptive message.
This plugin uses a very similar syntax to our earlier Design by Contract library, contractual. If you're migrating your project there are some differences to be aware of:
main:
section. Anything outside of a contract is considered to be part of the normal program code.{
and }
), labels no longer act as delimiters.__result
is now called it
in postconditions.Published by codemix under a permissive MIT License, see LICENSE.md.
FAQs
Design by Contract for JavaScript via a Babel plugin.
The npm package babel-plugin-contracts receives a total of 6 weekly downloads. As such, babel-plugin-contracts popularity was classified as not popular.
We found that babel-plugin-contracts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.