Organizing emberjs, node project

I come from a PHP background (mainly codeigniter framework) and have been fiddling with ember.js for a few months now. In my new project, I’m using node.js, express and mongodb as the backend.

I was wondering if anyone else is using this stack and if so, how do you organize your project? Specifically, what does your folder structure look like and how do you organize your ember app? Most tutorials I’ve seen are very basic and tend to throw everything in one app.js file. Is it common to use require.js with ember?

1 Like

I am using this exact stack and I based my project on this from GitHub. https://github.com/timfpark/messages

It compiles Templates etc and no need for JADE or EJS mixed with HBars.

Brendan