New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

css2stylus

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css2stylus

Converts CSS to Stylus.

  • 0.1.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
decreased by-11.11%
Maintainers
1
Weekly downloads
 
Created
Source

css2stylus.js NPM version

JavaScript utility to convert CSS into Stylus.

Node/Browser compatible.

Demo

###Try it online css2stylus.com

Usage

Node

Install the module

$ npm install -g css2stylus
$ css2stylus

Usage: css2stylus [options] <file1.css> <file2.css>

Supports bash-style piping from stdin to stdout, e.g. `cat myFile.css | css2stylus` outputs myFile.css as stylus. Useful for integrating into an editor of choice.

Examples:
  css2stylus -u -i 4 file1.css         Use 4 space ndent and convert file1.css while unprefixing.
  css2stylus -c file1.css file2.css    Preserve CSS syntax while converting multiple files.


Options:
  -u, --unPrefix   Un-prefix any property with vendor prefixes.
  -c, --cssSyntax  Keep CSS syntax punctuation.
  -f, --force      Overwrite existing .styl files
  -i, --indent     Set indentation level

Convert any css file:

$ css2stylus myfile.css

The output will be saved to myfile.styl.

The binary is also capable of piping from stdin, stdout. This is useful for integrating the binary with Vim or another editor of your choice.

Vim mapping to convert the selected CSS text to stylus:

" CSS2Stylus
:vnoremap <leader>cs :!css2stylus -u -i 4<cr><esc>

Browser

<!doctype html>
  <title>Demo</title>
  <script src="css2stylus.js"></script>
  <script>
  (function () {
    var css = 'body { color: red; }';
    var converter = new Css2Stylus.Converter(css);
    converter.processCss();
    // output
    var stylus_output = converter.getStylus();
    // body
    //   color red
  }());
  </script>

Keep CSS syntax

To keep CSS punctuation {:;} just pass --cssSyntax option from command line.

Or pass options object when processing a CSS file from JavaScript converter.processCss({ cssSyntax: true });

nib support

Unprefix any CSS snippet with vendor prefixes by passing --unPrefix option from command line.

Or pass an options object when processing a CSS file from JavaScript converter.processCss({ unPrefix: true });

License

See LICENSE.txt

Keywords

FAQs

Package last updated on 20 Aug 2014

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc