react-skillset
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

ReactSkillSet

Logo

MIT Licence

Intuitive job-candidate skill visualization, taking advantage of D3.js and JSONResume and React too !

REACT WRAPPER & PACKAGE MADE BY Romain OLIVIER

Live site:

Live demo:

Installing

npm i react-skillset

Usage

You'll first need to generate the csv file for your data. I redirect you to the authors page:

In your React App, do like so: !!!THE CSV FILE IS MANDATORY!!!

import React from "react";
import SkillSet from "react-skillset";
import CsvFile from 'LINK-TO-MY-CSV-FILE.csv';
 
const Profile = () => {
 
  return (
    <div>
        <SkillSet  
            csv={CsvFile}  
        />
    </div>
  );
};
 
export default Profile;

Other Options

The currently supported option for the SkillSet are: - The Width - The Height - The Nodes' Color (default is schemeCategory10)

The colors are limited and are from the d3 set, Use any of the "Categorical" by entering their name without "scheme".

        <SkillSet  
            csv={CsvFile}
            width={1000}
            height={1000}
            color={"Paired"}  
        />

React Wrapper for Jac21's SkillSet (https://github.com/Jac21/SkillSet)

Package Sidebar

Install

npm i react-skillset

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

388 kB

Total Files

7

Last publish

Collaborators

  • romain325