I'm a little new to node.js and trying to configure an application using Backbone.js for a client application, but sitting on top of express.js and node.js, so I have server-side extensibility.
However, there are not many examples on the Internet of a clean installation / organization for sharing these technologies. How should this project be presented, and is it even an effective combination of technologies, which I think it is?
|____app.js |____assets | |____css | |____js | | |____models | | |____test.coffee | | |____views |____lib | |____setup.js |____package.json |____public | |____images | |____javascripts | |____stylesheets | | |____style.css | | |____style.less |____routes | |____index.js | |____user.js |____views | |____index.jade | |____layout.jade
In addition, I hope that I can write all this application, Basic logic and everything, in coffeescript (using connect-assets) ...
source share