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.
@davedoesdev/b
Advanced tools
B is small and elegant module for Node.js that makes benchmarking fun.
Originally written by Veselin Todorov.
const b = require('@davedoesdev/b');
b('Synchronous benchmark', function (i) {
for (let i = 0, len = 1000000; i < len; ++i);
}).run(100);
const b = require('@davedoesdev/b');
b('Asynchronous benchmark', function (i, done) {
setTimeout(done, 10);
}).run(10);
const b = require('@davedoesdev/b');
b('make pretty and print to console', function (i) {
for (let i = 0, len = 1000000; i < len; ++i);
}).reporter('cli').run(100); // default
b('output json data', function (i) {
for (let i = 0, len = 1000000; i < len; ++i);
}).reporter('json').run(100);
const b = require('@davedoesdev/b');
class Reporter {
report(name, result, iterations) {
console.log(name, result, iterations);
}
}
b('Custom reporter', function () {
for (let i = 0, len = 1000000; i < len; ++i);
}).reporter(new Reporter()).run(10);
const b = require('@davedoesdev/b');
b('sync and async')
.add('sync', function (i) {
const start = Date.now();
while (Date.now() - start < 10);
})
.add('async', function (i, done) {
setTimeout(done, 10);
})
.run(10);
$ npm install @davedoesdev/b
$ npm install
$ make test
project : b
repo age : 10 years
active : 28 days
commits : 132
files : 60
authors :
47 jkroso 35.6%
34 David Halls 25.8%
32 Veselin Todorov 24.2%
18 Jake Rosoman 13.6%
1 Jakeb 0.8%
MIT License
Copyright (C) 2012 Veselin Todorov
Copyright (C) 2022 David Halls
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Benchmarks for Node.js.
The npm package @davedoesdev/b receives a total of 2 weekly downloads. As such, @davedoesdev/b popularity was classified as not popular.
We found that @davedoesdev/b demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.