In my node.js express application I have app.js that has a few common routes. Then in a wf.js file I would like to define a few more routes. How can I get app.js to recognize other route handlers defined in wf.js file? A simple require does not seem to work.
|
Check this official example: https://github.com/visionmedia/express/tree/master/examples/route-separation EDIT If you want to put the routes in a separate file, for example routes.js You can create the routes.js file in this way
And then you can require it from app.js passing the app object in this way:
|
|||||||||
|
|
Building on @ShadowCloud 's example I was able to dynamically include all routes in a sub directory. routes/index.js
Then placing route files in the routes directory like so: routes/test1.js
Repeating that for as many times as I needed and then finally in app.js placing
|
|||||||||||||||
|
|
And build yet more on the previous answer, this version of routes/index.js will ignore any files not ending in .js (and itself)
|
|||
|
|
I guess you're looking for a better modular approach, such as described by TJ himself: |
|||
|
|
|
This is possibly the most awesome stack overflow question/answer(s) ever. I love Sam's/Brad's solutions above. Thought I'd chime in with the async version that I implemented:
My directory structure is a little different. I typically define routes in app.js (in the root directory of the project) by EDIT: You can also put this in a function and call it recursively (I edited the example to show this) if you want to nest your routes in folders of arbitrary depth. |
||||
|
|