New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

contribution-map

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contribution-map

contribution-map is a visual component that helps us visually display the contributors and their contributions to a project. This component can generate a matrix where each cell represents the number of contributions made by a contributor during a specifi

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

Contribution map mapping

  • contribution-map is a visual component that helps us visually display the contributors and their contributions to a project. This component can generate a matrix where each cell represents the number of contributions made by a contributor during a specific time period.

alt text

How to use it

  • Install the contribution map component and use other methods such as NPM or Yarn to install it:
npm install contribution-map

yarn add contribution-map
  • Introduce and use contribution-map in the main.js of the project
// ....
import ContributionMap from "contribution-map";

app.use(ContributionMap);
// ....
  • Use component
<template>
    <ContributionMap :contributionData="contributionData"></ContributionMap>
</template>
<script setup>
// Mock Data
const contributionData = [
    {
        count: 1,
        create_time: '2024-01-01',
    },
    {
        count: 1,
        create_time: '2024-01-07',
    },
    {
        count: 48,
        create_time: '2024-03-17',
    },
    {
        count: 1,
        create_time: '2024-01-05',
    },
    {
        count: 1,
        create_time: '2024-01-09',
    },
    ....
];
</script>

Contribution

  • We welcome all contributions and suggestions. If you want to contribute to contribution map, you can:
    • Submit bug reports or suggestions
    • Submit code improvements or new features
    • Improving documents

Keywords

github

FAQs

Package last updated on 21 Mar 2024

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