Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
adventure-verify
Advanced tools
write adventure verify functions using tape with colored output to better distinguish user output from test output
In your excercise code, you can do:
var verify = require('adventure-verify');
exports.problem = 'pass in the argument 555'
exports.verify = verify(function (args, t) {
t.plan(1);
t.equal(args[0], '555');
});
And then run plug your beep_boop.js excercise into your adventure runner:
var adventure = require('adventure');
var adv = adventure('robots');
adv.add('beep boop', function () {
return require('./beep_boop.js');
});
adv.execute(process.argv.slice(2));
var verify = require('adventure-verify')
You should pass in a function that will get args
, the command-line arguments
supplied after the xxx-adventure verify ...
command on the command line and
t
, a tape instance.
The function fn(cb)
returned by verify()
fits into the signature expected by
adventure. cb(ok)
will be called with a
boolean ok
based on parsing the tap output from tape for any failures.
The options opts
will be passed to
tap-colorize.
These options work:
opts.pass
- color of passing /^ok/
linesopts.fail
- color of failing /^not ok/
linesopts.info
- color of other tap-specific linesYou can pass in a named color such as 'green'
, an array rgb color such as
[40,240,100]
, a hex color such as ''#f00d55'
, and you can include a display
modifier such as 'bright'
, 'dim'
or 'reverse'
.
You can optionally set opts.modeReset
, which hacks the colors back temporarily
for console.log()
and console.error()
so that user debugging statements are
printed without colors.
With npm do:
npm install adventure-verify
MIT
FAQs
write adventure verify functions with tape
The npm package adventure-verify receives a total of 20 weekly downloads. As such, adventure-verify popularity was classified as not popular.
We found that adventure-verify 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.