When creating a node.js project (express based if it matters), what is the recommended way to store the different files building up the project?
More specifically, dependent external models (being declared as dependencies in package.json) are downloaded to ./node_modules, so where should I place my "locally" created modules ?
Thanks
See nodejs-express-mongoose-demo. It has the perfect file structure.
the standard is to use a local lib directory.
see the node.js libraries on git, there are a million examples.