
Research
Malicious NuGet Packages Typosquat Nethereum to Exfiltrate Wallet Keys
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
mutation-testing-metrics
Advanced tools
Utility function to calculate mutation testing metrics..
See mutant states and metrics in the Stryker handbook for more details about mutation testing metrics.
See the below example (uses TypeScript):
import { MetricsResult, calculateMutationTestMetrics } from 'mutation-testing-metrics';
import { MutationTestResult } from 'mutation-testing-report-schema';
const mutationTestReport: MutationTestResult = {
/*... Get a holds of mutation test results somehow */
};
const result: MetricsResult = calculateMutationTestMetrics(mutationTestReport);
console.log('Mutation score', result.metrics.mutationScore);
calculateMutationTestMetrics
[(MutationTestResult) => MutationTestMetricsResult
]Calculates the full mutation test metrics from both the files-under-test as well as (optionally) the test files.
The input is a mutation test result valid according to the [https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/report-schema#readme]
Returns A MutationTestMetricsResult
that contains both the systemUnderTestMetrics
as well as the testMetrics
calculateMetrics
[(MutationTestResult) => MetricsResult
]Calculates the files-under-test metrics inside of a mutation testing report.
The input is a mutation test result valid according to the [https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/report-schema#readme]
aggregateResultsByModule
[(Record<string, MutationTestResult>) => MutationTestResult
]Aggregates multiple reports together into a single report, grouped by module.
Input: resultsByModule
The MutationTestResult objects by module name.
Types are included and documented with TypeScript.
FAQs
Utility functions to calculate mutation testing metrics.
The npm package mutation-testing-metrics receives a total of 125,549 weekly downloads. As such, mutation-testing-metrics popularity was classified as popular.
We found that mutation-testing-metrics demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.
Product
Socket is launching experimental protection for the Hugging Face ecosystem, scanning for malware and malicious payload injections inside model files to prevent silent AI supply chain attacks.