Is there a common convention for breaking up and modularizing the app.js file in an Express.js application? Or is it common to keep everything in a single file?
|
|
I have mine broken up as follows:
I use Exports to return what's relevant. For instance, in the models I do:
and then if I need to create a phone number, it's as simple as:
if I need to use the schema, then (which assumes that we are working from the routes folder and need to go 1 level up and then down to models) EDIT 4The express wiki has a list of frameworks built on top of it. Of those, I think Twitter's metador is structured pretty well. We actually used a very similar approach to how they load up parts of the app. derby.js also looks extremely interesting. It's akin to meteor without all of the hype and actually gives credit where credit is due (notably, node and express). EDIT 3If you are a fan of CoffeeScript (I am personally not) and reeeeaaaaaally want the L&F of Rails, there is also Tower.js. EDIT 2If you are familiar with Rails and don't mind the bleed-over of some concepts there is Locomotive. It is a light-weight framework built on Express. It has a very similar structure as RoR and carries over some of the more rudimentary concepts (such as routing). It's worth checking out even if you don't plan to use it. EDIT 1nodejs-express-mongoose-demo is very similar to how I have mine structured. Check it out. |
|||||||||||||||
|
|
Warning: referencing code I hacked together for node knockout, it kind of works but is far from elegant or polished. To be more specific about splitting up
This basically means I place all my bootstrapping in a seperate file, then I bootstrap the server. So what does bootstrap do?
Well it splits all the server initialization setup in nice chunks. Specifically
Just for example let's look at the routing file
Here I load all my models and routes as arrays of files. Disclaimer:
Here I punch socket.io to actually use authorization rather then letting any tom and jack to talk to my socket.io server
Here I start my routes by passing the relevant model into each route object returned from the route file. Basically the jist is you organize everything into nice little modules and then have some bootstrapping mechanism. My other project (my blog) has an init file with a similar structure. Disclaimer: the blog is broken and doesn't build, I'm working on it. |
|||
|
|