Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

css-heatmap-generator

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-heatmap-generator

Utility to build CSS heatmap graph

latest
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

css-heatmap-generator

Utility to build CSS heat map

Purpose: In large projects we often have multiple CSS files & templates consuming CSS rules from multiple files. When we refer to multiple CSS rules in our templates from multiple files, there is chance to override the common rules while fixing a bug. Multiple screens may refer to common CSS rule which if modified impacts all. There could be duplicate rules having same CSS selectors defined in multiple CSS files. When we fix a bug or enhance one particular screen we need to know the CSS rules that we are adding or modifying are not duplicate or are not breaking some other screen.

This tools helps in visualizing the CSS rules from multiple files in a glance. CSS Heat Map helps in:

  • Identifying duplicate rules.
  • Identifiying sensitive rules which are refererred by multiple templates.
  • Identifying IMPACT of a CSS modification, thus help in better regression testing.

Installation

npm install css-heatmap-generator

Configuration

module.exports = {
        
    "sourcePath": "", /* Path to the source code */    
    
    "excludeDirs": [], /* List of directories to exclude like lib, thirdparty etc */
    
    "showSensitveOnly": true, /* If true only results in sensitive rules in the report */    
    
    "target": "" /* target folder where report needs to be generated */

}

Save this as cssHeatMap.conf.js next to node_modules folder

Command

Add this to your package.json:

"scripts": {

        "buildCSSGraph": "node ./node_modules/css-heatmap-generator"    

}

Run:

npm run buildCSSGraph 

Output

In the target folder specifed, there will be a repors generated. 'cssHeatMap', displayes the heat map in graphical format using d3, where 'cssHeatMapTable' represents the same with more details in tabular format. The JSON data is also generated in target folder, allowing customization of reports.

  • The file cssHeatMap.html is a visualization of CSS rules across the application, their usage and sensitivity.
  • The file cssHeatMapTable.html, is a tabular represenation of the CSS rules.

Note: I am working on improving the logic to find the usage of CSS in template where the rules are defined as complex selectors like A.B>C. Please feel free to contribute.

Keywords

CSS Heat Map

FAQs

Package last updated on 18 Jun 2018

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