Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

@stryker-mutator/dashboard-data-access

Package Overview
Dependencies
Maintainers
4
Versions
3536
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stryker-mutator/dashboard-data-access

This package contains the data access layer of the stryker dashboard application.

latest
Source
npmnpm
Version
0.20.3
Version published
Maintainers
4
Created
Source

Mutation testing badge Build Status

Stryker dashboard data model

Table storage

    |--------------------|
    |      Project       |
    |--------------------|
    | owner: string PK   |
    | name: string RK    |
    | enabled: bool      |
    | apiKeyHash: string |
    |--------------------|

    |-----------------------------------|
    |       MutationTestingReport       |
    |-----------------------------------|
    | projectName;version: string PK    |
    | module: string RK                 |
    | mutationScore: number             |
    |-----------------------------------|

    projectName = `${owner};${name}`

    Legend:
    PK = Partition key
    RK = Row key

This data model will be stored in an Azure table service database. It is a, very scalable, NoSQL database.

Some notes:

  • A Project's owner is i.e. 'github.com/stryker-mutator'
  • A Project's name is the short name of the repository, i.e. 'stryker'
  • The MutationTestingReport's projectName and version form the Partition Key. This is te full project name including the branch name (usually) i.e. 'github.com/stryker-mutator/stryker/master'

Blob storage

The mutation testing report json data is stored in Azure blob storage. The name of the blobs are projectName/version/module.

FAQs

Package last updated on 16 Mar 2026

Did you know?

Socket

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.

Install

Related posts