Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

json-css

arajajyothibabu3.5kMIT1.5.6

Utility to convert CSS to JSON and vice versa.

css, json, css, to, json, json, to, css, convertor

readme

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"
          }
      });