After hearing great points from the community, and experiencing the need for this in some of our projects, all but the bare bones Sails core is going to be pulled into plugins. The basic plugins will all be installed by default in new projects, but now it's possible to disable the things you don't want. It also makes it much easier to customize Sails for your needs, and probably enables all sorts of cool things none of us have even considered yet. ** More on this to come **
- REST blueprints will now be applied using the
controllers
hook, and configurable-- on by default.- Automatic controller routing (add a middleware method to a controller and you can hit it at
/controller/middleware
) will also be applied via thecontrollers
hook, on by default, and is now considered part of the blueprints (the other blueprints just happen only to work if you have a model, since they need something to get allllll RESTful on.)