Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pboos/node-webc
https://github.com/pboos/node-webc
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pboos/node-webc
- Owner: pboos
- Created: 2012-04-17T22:08:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-10T22:24:21.000Z (over 12 years ago)
- Last Synced: 2024-10-31T10:51:32.111Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# webc - website compiler
WebC makes it easy to compile your jade/coffee-script/less files and test them locally in the browser. It can watch the files for changes and even serve them through a static web server locally for testing.
## Installation
via npm:
```bash
$ npm install webc
$ webc --help
```## Usage
```bash
$ webc compile
```
Compiles your files to _output. Use --out to specify diferent output directory.```bash
$ webc watch
```
Same as compile, but compiles if changes happen.```bash
$ webc serve
```
Same as watch but as well serves the files through http://localhost:3000. Use --port to change the port.