An open API service indexing awesome lists of open source software.

https://github.com/rt2zz/stylwriter


https://github.com/rt2zz/stylwriter

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

## StylWriter
Simple module to convert styl files to css files and write the css file to disk.

### Example
Typical usage in a http route. If a stream is passed as a second argument, the compiled css will be streamed out.
```js
var stylwriter = require('stylwriter')
function(req, res){
stylwriter('styles.styl', res)
}
```