Project: DuckSauce Notes Part III
It's been a couple of weeks since I've released an update on this project, but much of it is due to the fact that I have completely reimplemented my approach. I now have a better understanding where browserify will come into place and where grunt will come into place. Most importantly I understand the v8 javascript engine which runs underneath the chrome browser; this is a major win for me. Here is my previous article...
Day 1
- Day 7: GruntJS LiveReload--Take Productivity to the Next Level | Openshift Blog
- I basically want to remove the need for LiveReload.
- Moving from CodeKit to Grunt Watch + LiveReload for Real-time JavaScript/LESS/SASS Compilation - Justin Klemm
- Another great example what LiveReload can do.
- Chrome Apps Office Hours: NodeJS in Chrome packaged apps - YouTube
- Example with Browserify but you can't using it against Grunt.
- Iced Blog - node js in chrome
- http://stackoverflow.com/questions/16788731/grunt-watch-multiple-files-compile-only-changed
- http://stackoverflow.com/questions/2809688/directory-chooser-in-html-page
- https://developer.chrome.com/devtools/docs/integrating
- http://stackoverflow.com/questions/18647853/is-there-a-way-to-package-chrome-apps-using-nodejs-webkit
http://stackoverflow.com/questions/16631825/chrome-developer-tools-workspace-mappings- https://developer.chrome.com/extensions/devtools#solutions
- Should I be able to enable grunt-browserify's watch AND also use grunt-contrib-watch for other tasks
- http://toddmotto.com/using-grunt-and-chrome-workspaces-for-in-browser-development/ - basically what I'm trying to achieve but isolated to just being an Chrome Extentison.
Day 2
- http://dontkry.com/posts/code/angular-browserify-grunt.html
- node.js - Browserify by Grunt.js watch - Stack Overflow
- Not what I was trying but help for maintenance outside the extension.
- http://www.html5rocks.com/en/tutorials/developertools/revolutions2013/
- List of things
- https://www.npmjs.org/package/less-watchr
- This is what I want in place of the grunt-contr-watch or just watch project.
- Similar Project
- Bonus: Grunt And Gulp Tasks For Performance Optimization | Yeoman
To sum up this article I've completely rewritten this project and the only piece I'm trying to figure out is how to point to the Workspace from within an chrome extension (if that's possible). If I can do that I can simply install a plugin to watch and clean up code as I write it.