#Simple Taskrunner
Lightweight scaffolding and build tool to quickly and easily integrate a React+Backbone build with another backend.
- transpiles scss into css
- transpiles es6 and jsx into es5
- concatenates all required/imported modules together into minified files in a
public/directory
##Getting started
- starting inside the root of the project-directory clone this repo with
git clone git@github.com:TIY-Charleston-Front-End-Engineering/simple-taskrunner.git . - disconnect from my remote repo and point to your own (see Publishing)
npm installnpm run go- that's it! visit http://localhost:«your-port-setting»
##Workflow
- only files in
/publicwill be served up to the browser. - all
.htmlpages are served from the/viewsfolder - all assets (CSS, JS, and images) are served from the
/publicfolder - you'll only write CSS and JS code in the files in the
/srcfolder - whenever you save while your local server is running (
npm run go), your code in the/src-clientfolder will be read and transpiled into the/publicfolder. - view and test your app at localhost:3000
##Publishing
- add, commit and push per usual