Is there any guidance on how to write modular Ember.js apps? I have seen Tom Dale's position on AMD here so I am not going to force fit AMD on to the framework (as some have attempted here). It appears that Ember internally uses bpm/spade. Is that a reasonable approach to modularize Ember apps too? Any samples using this approach?

P.S. The getbpm.org site seems to be down which makes it difficult to learn about it. There is a github page but it refers to the site for install instructions.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 6 down vote accepted

BPM in it's current form is no longer supported by the core team, but is community supported. The only build tools they are officially providing support for is rake-pipeline. However, BPM does still work and it works well (I still use it with my projects). For info on how to use it see this: https://github.com/ud3323/bpm/wiki/Using-BPM-with-Ember. You may want to use my fork of bpm too. I've merged in Joe West's support for a proxy middleware.

There is also community build tools for node.js called ember-runner which looks promising as well.

As for using rake-pipeline. Look at the AssetFile on the emberjs projects to see how must be configured using rake-pipeline and rake-pipeline-web-filters. Also, take a look at the answers to this question on StackOverflow (especially Yehuda's). You may also find this gist helpful as well.

link|improve this answer
Thanks ud3323! Since I don't have much time to evaluate all of these approaches, I will start with BPM and go with it if it works reasonably well. BTW, my back-end is Java and the Ember app will access it only via AJAX. Any words of wisdom for this environment? Your docs seem to be for a Ruby app. How does bpm work in development mode - will I be debugging minified js? Also, since I will be using h5bp, how does bpm compare with github.com/h5bp/ant-build-script - any thoughts? I assume I would still have to learn how bpm does modularization. – Naresh Feb 12 at 13:22
Ember is back-end agnostic so as long as you're AJAX calls are getting & receiving the correct data you'll be fine. BPM is a ruby app and you'll need to have Ruby 1.9.x installed to run it. However, you won't need to know Ruby to use BPM. There are a bunch of little tricks to using BPM that are undocumented. I'll do a quick writeup later today. As for the H5BP build script, I'm not familiar with it but after quickly looking at it you should be able to create a new project, use BPM to manage you js/css, and when you want to go to production run the project through their script – Roy Daniels Feb 12 at 16:56
1  
I have just created this doc which explains some useful ways to customize your build files. https://github.com/ud3323/bpm/wiki/Project-Build-File-Tips-Tricks. Oh and if you could mark this question as answered I'd appreciate it :) – Roy Daniels Feb 12 at 18:56
Thank you! I will trying this out today. – Naresh Feb 12 at 19:38
1  
I recently ran across this skeleton project on Git which may be of use to someone for getting a Rake-Pipeline-Webfilter project off the ground: github.com/interline/ember-skeleton – John K Feb 21 at 12:37
show 5 more comments
feedback

I have played a bit with Rails, so for me, creating a rails 3.2 app was the easiest way to achieve this. So if you don't mind using rails as a back-end, I this might suit you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.