I'm new to Ember/Sproutcore... From what i could find in SproutCore documentation, SC.TemplateView supports loading handlebar template from external files. Does this functionality exist in Ember?

link|improve this question
feedback

3 Answers

Yes you can load external templates into an Ember app using BPM. Unfortunately, there isn't any mention of this great tool in the Ember website (hopefully that changes).

EDIT (01/02/12)

I have created BPM packages for Ember.js on GetBPM.org so the previous instructions are no longer needed.

For those new to Ember and don't know about BPM here are some useful links to get started:

  1. Download BPM
  2. Using BPM with Ember
link|improve this answer
ah thanks for these notes. i ran bpm-latest.exe and then bpm init hello_world but got this: C:/Program Files (x86)/BPM/local/bpm/lib/bpm/libgems_ext/config_file.rb:9: warning: already initialized constant CSIDL_COMMON_APPDATA C:/Program Files (x86)/BPM/local/bpm/lib/bpm/libgems_ext/config_file.rb:12: warning: already initialized constant SHGetFolderPath ... ... is there a step i've missed or anything i'm meant to have install before bpm? – pandavault Dec 26 '11 at 17:56
Hmmm... I'm on a Mac and have not tried installing BPM on a Windows machine. You might want to check the github repo and see if an issue has been made. If I get some time this week I'll try it on a virtual machine and see if I can help you out too. – Roy Daniels Jan 2 at 17:34
feedback

As other answers have mentioned, your build tool is the key to achieving this. The following StackOverflow question shows how to do this using Rake::Pipeline Setting up rake-pipeline for use with handlebars alongside Google App Engine

Regarding BPM vs. Rake::Pipeline: At the moment, the Ember.js core team is using Rake::Pipeline in their production projects. The authors of BPM have expressed interest in getting back to it, but no one is actively developing it as far as I know. That said, it's a great tool, and we're currently using it on a project.

link|improve this answer
Many of the addons have pull requests to get them working with Ember.js and BPM too... I think that's complete bs if it's true that BPM is being put on the back-burner by the core team. So who do I need to talk to about getting Ember.js and all of the Ember.js addons on GetBPM.org and get those pull requests accepted that fixes the addons so they work with Ember.js? – Roy Daniels Dec 24 '11 at 7:55
@ud3323 best way to get a conversation going would probably be in the #emberjs IRC channel – Luke Melia Dec 28 '11 at 10:34
Already talked to Peter about it. He said they are still in support of BPM but need some time for planning... Until then I'm just going to create Ember.js compatible packages for the addons and put them on GetBPM myself. If at a later time they want to take it over then they can. – Roy Daniels Dec 28 '11 at 12:23
feedback

It's no problem to load your template from an external File. Like in SC1 this functionality is provided by your build tool which in fact translates your external files into the appropriate javascript code. One solution to do that is to make use of BPM.

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.