Project

work-bench

0.0
No commit activity in last 3 years
No release in over 3 years
A quick and simple local web server for prototyping web applications with HAML, SASS and Compass support.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0
>= 0

Runtime

 Project Readme

Workbench

Workbench is a quick and simple local web server for prototyping web applications and sites. It supports HAML, SASS and Compass out of the box.

Install

The first step is to install the gem:

gem install work-bench

Workbench comes with command line utility workbench.

Create first project

Next we need to create project.

mkdir project
cd project
workbench init

Start server

Inside project directory run:

workbench start

Now type in browser http://localhost:4000. And you will see the start page.

Export prototype

You can export your work using:

workbench export

By default the project will export to a folder export.

Help

Type workbench for more help and options.

Additional features

You can specify the JS libraries to be used in your project.

workbench init --js jquery json

List of libraries available:

workbench js

normalize.css

You can add awesome normalize.css to project. Just use --normalize or --no-normalize in options. This feature is enabled by default.

workbench init --normalize