WDev
is a command line utility designed to help web development at the beginning
of the developer's career.
- run your html through a proper HTTP server
- get code hints for Javascript, CSS, Less, Sass
- transparent transpilers:
- write CSS, Less or Sass,
- write ES6 or even ES7
WDev
comes as a globally available command line tool:
npm install -g wdev
Once it is installed you can easily bootstrap a new web project:
// setup a new empty folder
mkdir my-web-project
cd my-web-project
// this run the magic!
wdev
You project will be available at http://localhost:8080
immediately, and every
change in your project's folder will be reflected in the server.