I'm searching for a video/blog post or something related that help me organize my node.js web application.
I have an application where i am using express.js upon node.js.
I'm using:
Mvc pattern,
i18n,
config env prod/dev,
custom middlewares,
custom prototypes
custom modules
I need organize better the folder structure, but i don't know exactly how.
I already search for this, but i was only able to find poor explanations about an good folder structure in a node.js app.
The app also have an admin dashboard, so i am separating the public, views and controllers like this:
public
|-- admin
|-- client
views
|-- admin
|-- client
controllers
|-- admin
|-- client
This is a good idea?
Anyone knows a good book, video or blog post that can help me with my problem?