application.js ௭� V p�1� V // config/application.js var passport = require('passport') , LocalStrategy = require('passport-local').Strategy; // some static users var users = [ { id: 1, username: 'bob', password: 'secret', email: 'bob@example.com' } , { id: 2, username: 'joe', password: 'birthday', email: 'joe@example.com' } ]; // helper functions function findById(id, fn) { var idx = id - 1; if (u