
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
clout-passport
Advanced tools
In the directory of your clout-js application, do the following;
npm install clout-passport
package.json or clout.json{
...
"modules": ["clout-passport"]
...
}
Create a new file passport.default.js or passport.<YOUR_ENV>.js in /conf directory with the following JavaScript.
module.exports = {
passport: {
directory: '/strategies',
serializeUser: '<PATH_TO_FN>', // e.g. models.User.serializeUser
deserializeUser: '<PATH_TO_FN>', // e.g. models.User.deserializeUser
/** Configure strategies */
facebook: { // this can be seen in passport documentation
clientID: '<CLIENT_ID>',
clientSecret: '<CLIENT_SECRET>',
callbackURL: '<CALLBACK_URL>',
profileFields: ['id', 'displayName']
}
/** load stratergies from this module (default: false) */
useDefault: true, // load all strategies
useDefault: ['local'], // selective loading
/** configure provided stratergy */
_facebook: {
}
}
};
Create a new directory in your project called /strategies. This directory will contain all your passport stratergies.
local.js
/**
* Local Stratergy Example
*/
const LocalStrategy = require('passport-local');
module.exports = function (conf) {
var self = this; // clout context
return new LocalStrategy(conf, function (username, password, cb) {
self.models.User
.authenticate(username, password)
.then(function (user) {
cb(null, user);
}).catch(cb);
});
};
These strategies can be enabled in the configuration.
{
...
passport: {
...
_local: {
authenticateFn: 'models.User.authenticate' // Path to authenticate function
}
...
}
...
}
Authenticate function should be defined in the models. An example of an authentication function is the following;
var User = module.exports = {},
clout = require('clout.js');
...
// User Sequalize Model
...
User.authenticate = function authenticate(username, password) {
var deferred = clout.Q.defer(),
User.query({
username: username,
password: password
}).then(function (user) {
if (!user) {
return deferred.reject('Username or Password is incorrect');
}
deferred.resolve(user);
}, deferred.reject);
return deferred.promise;
}
FAQs
Clout module to implement passport
We found that clout-passport demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.