rendrjs / rendr

Render your Backbone.js apps on the client and the server, using Node.js.
MIT License
4.09k stars 312 forks source link

[Question] Improving development workflow and client cache misses #452

Open pjanuario opened 9 years ago

pjanuario commented 9 years ago

I am starting with rendr and I am trying to improve the performance of the code reload in development and also improve client side cache. My starting point were the codebase existent on the examples/06.

So my goal are:

Bundling: Since our application code is in a different bundle the reload should be faster since it contains less dependencies to bundle. Would also be nice to have a bundle with the handlebar templates and other with server side logic, this would probably improve the reload time also and specially useful for designers workflow.

Grunt Browserify plugin: From what I had read, the last builds of grunt-browserify would allow us to use the native browserify cache that make bundle faster after the first bundle. But until now I was unable to package the app (even with a single bundle) with the last version of grunt-browserify, since alias mapping have been removed and alternatives seems not be working properly.

Anyone with nice recipes for this kind of stuff? @saponifi3d :)

saponifi3d commented 9 years ago

@pjanuario I'm actually working with gulp + browserify, not grunt. I'm starting work on how to split up application code and get it to work the way you're describing now. I'm going to be doing a similar approach as this https://github.com/sogko/gulp-recipes/tree/master/browserify-separating-app-and-vendor-bundles to split the vendor files from the app specific.

Once I get this stuff done, I'm going to build out an example app in https://github.com/rendrjs/rendr-examples for gulp and for bundle splitting

pjanuario commented 9 years ago

@saponifi3d Thanks for the feedack. I will post here if I have news about it. For now, I am still doing the application bootstrap and this is not my main focus yet, but I will have to deal with in close future.

pjanuario commented 9 years ago

@saponifi3d by the way, can you talk a little bit about the stack you are using. I am building stuff in node in the last year but is my first website using node, my previous project were mainly api's and microservice components in plain node/js.

So I am still researching for appropriate tools. Such as tools/recipes to:

Would be nice to have some place where people could share there tools and workflows, probably a lot people have custom scripts that could be reused and who knows we could create and rendr example that could be used to bootstrap an application for people that is starting with rendr.