I'm doing some R&D on Node.js and so far I like it, I'm just curious on how I could re-use code in order to have some shared code between client and server.
A good example of that need would be Backbone.js which I installed with npm.
Currently I have a directory that looks like this:
app.js
public/
routes/
views/
node_modules/
tests/
Obviously I use express.js and all my client-side code is under public folder where css, images, js files are located.
So how I could have a model in backbone which I could use it in both server and back?
Also I used to use JavaScript AMD with Require.js in order to structure and modulize my application, I got used to it and I tend to like it I saw require.js is available via npm but now that I installed it I'm not sure how I cal use it in client-side since I used to have something like this: <script data-main="js/main" src="js/libs/Require/require.js"> but since require.js is installed via npm it is isn't under public folder so I can't see any possible way to load it.
Thanks
public/models,public/collections,public/views, just put the backbone stuff in public. As for re-using require, consider using modul8 or browserify instead – Raynos Jan 17 at 12:48var Backbone = require('backbone');in the model then when I will try to load this JS file it will throw an exception that therequiremethod is not defined, or it will messed up with require.js which I use on my client-side so how I could have a hybrid model so I could use it on both client and server side since I use require.js on client as a result my scripts start withdefine([...that's why I was thinking to use requireJS on both sides. – panosru Jan 17 at 22:03