stackunderflow
stackunderflow

Reputation: 1714

How to add ember to a NodeJS project?

How can I add Ember to an existing NodeJS project without using the ember-cli module. Could I simply include ember.min.js and ember-data.min.js into my rendered .hbs? Secondly, if I am already using Handlebars on NodeJS would this satisfy Ember's dependancy?

Upvotes: 0

Views: 97

Answers (1)

Use http://emberjs.jsbin.com/ to see how Ember can be started the traditional way, without Ember CLI.

Upvotes: 1

Related Questions