What services would one add to the api/services folder in sails.js
a service would be in my opinion, a piece of logic that you need in multiple locations of your app. for example an email service. the following is taken directly from the sails-wiki github page. // EmailService.js – in api/services exports.sendInviteEmail = function(options) { var opts = {“type”:”messages”,”call”:”send”,”message”: { “subject”: “YourIn!”, “from_email”: “info@balderdash.co”, “from_name”: “AmazingStartupApp”, … Read more