json-css

1.5.6 • Public • Published

JSON-CSS | CSS-JSON

Utility to convert Cascading Style Sheets (CSS) to JSON objects and vice versa.

npm version

TRY HERE

  • Yet to support media queries
  • Yet to support Files

Import:

  • Installing with NPM

      npm install json-css --save
    
  • Import in es6

      import JsonCSS from 'json-css';
    
  • Import through require in es5

      var JsonCSS = require('json-css');
    

Usage

  • to JSON with CSS as input type string

      JsonCSS.toJSON(`
          h1 {
              color: #F1F1F1;
          }
      `);
    
  • to CSS with JSON as input type object

      JsonCSS.toCSS({
          h1: {
              color: "#F1F1F1"
          }
      });
    

Dependencies (0)

    Dev Dependencies (12)

    Package Sidebar

    Install

    npm i json-css

    Weekly Downloads

    1,204

    Version

    1.5.6

    License

    MIT

    Last publish

    Collaborators

    • arajajyothibabu