├── .gitignore ├── LICENSE ├── README.md ├── app ├── models │ └── user.js └── routes.js ├── config ├── auth.js ├── database.js └── passport.js ├── package.json ├── server.js └── views ├── connect-local.ejs ├── index.ejs ├── login.ejs ├── profile.ejs └── signup.ejs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/README.md -------------------------------------------------------------------------------- /app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/app/models/user.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/app/routes.js -------------------------------------------------------------------------------- /config/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/config/auth.js -------------------------------------------------------------------------------- /config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/config/database.js -------------------------------------------------------------------------------- /config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/config/passport.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/server.js -------------------------------------------------------------------------------- /views/connect-local.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/views/connect-local.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/views/login.ejs -------------------------------------------------------------------------------- /views/profile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/views/profile.ejs -------------------------------------------------------------------------------- /views/signup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/easy-node-authentication/HEAD/views/signup.ejs --------------------------------------------------------------------------------