Sails determines which globals to expose by looking at sails.config.globals, which is conventionallly configured in config/globals.js.
To disable all global variables, just set the setting to false:
// config/globals.js
module.exports.globals = false;
To disable some global variables, specify an object instead, e.g.:
// config/globals.js
module.exports.globals = {
_: false,
async: false,
models: false,
services: false
};
- Bear in mind that none of the globals, including
sails, are accessible until after sails has loaded. In other words, you won't be able to usesails.models.userorUseroutside of a function (sincesailswill not have finished loading yet.)