Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
/'maɪ.kɑː/
A thin wrapper around mocha that finds tests anywhere in your project and provides a utility that gets tests up and running quickly
Supported on Node.js versions 4 and 6
npm install --save-dev mycha
./node_modules/.bin
to your PATH environment variablemycha install
prompts you for where you would like to install your default test helper, testHelperPath
testHelperPath
has an extension found here then
it writes the test helper in that language and updates the configuration file accordinglyruns
npm install --save-dev chai sinon sinon-chai
writes to testHelperPath
process.env.NODE_ENV = 'test';
var chai = require('chai');
var sinon = require('sinon');
chai.use(require('sinon-chai'));
global.chai = chai;
global.expect = chai.expect;
global.sinon = sinon;
writes to mycha.yml
# Environment variables to add to process.env when running mocha
mochaEnv: {}
# Default options to pass to mocha (can be overridden by command line options)
mochaOptions:
colors: true
reporter: dot
# Path patten used for finding tests (see https://github.com/isaacs/minimatch)
testFilePattern: '**/*{spec,test}.js'
# Files to include before all tests
testHelpers:
- #{testHelperPath}
mycha [mochaOptions] [<folder>...] [<file>...]
To add a new compiler, add an entry here and add a language specific version of the test helper here.
see our developer documentation
FAQs
Unknown package
The npm package mycha receives a total of 13 weekly downloads. As such, mycha popularity was classified as not popular.
We found that mycha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.