I am having a small ember application and I need to embed this into another ember application . How can I do this embedding ?
Asked
Active
Viewed 347 times
2 Answers
0
You can't embed ember app inside another ember app. but you can embed ember app in other frameworks or websites.(I may be wrong, in my earlier attempt I failed)
But you have got few options to consider,
1. You can consider writing ember engine
2. You can write addon and use it in your ember app

Ember Freak
- 12,918
- 4
- 24
- 54
-
Thank you for your reply. I will try these options. – Mervin V Nov 20 '17 at 12:04
-
How to embed ember application in other frameworks or websites ? – Mervin V Jan 17 '18 at 06:27
-
You can include the index.html code in your website – Ember Freak Jan 17 '18 at 11:03
0
I was going to suggest using an iframe
, and searching through the available addons, I've come across https://github.com/ming-codes/ember-iframe-app I've never used this library, but it looks promising

mistahenry
- 8,554
- 3
- 27
- 38
-
-
I'd recommend Ember Engines over this approach in the interests of not needing to load your Ember libraries twice ... – acorncom Dec 05 '17 at 04:29