servester
v0.0.4
Published
Quickly setup servers and asset pipelines
Downloads
16
Readme
Servester
Quickly setup servers and asset pipelines.
Why?
Sometimes you just want to write language specific code and not have to deal with setting up an asset pipeline. That's where Servester comes in.
Example
Start writing and previewing Reactjs within 10 seconds. No more setting up browserify.
Install
$ npm install -g servesterUsage
$ servester [applicationType] [applicationName]See supported application types.
Example
- Create application
$ servester react my-react-app- Run Server
$ cd my-react-app $ npm start - Confirm server is running at localhost:8080/index.html
- Write Reactjs code in
my-react-app/src/scripts/app.jsx - See your changes at localhost:8080/index.html
Supported Application Types
Reactjs
Creates application structure and server for Reactjs
$ servester react my-react-appStatic
Creates application structure and server for static files (E.g html, js, css, etc)
$ servester static my-react-app