├── .babelrc ├── .editorconfig ├── .github ├── contributing.md ├── issue_template.md ├── pull_request_template.md └── stale.yml ├── .gitignore ├── .istanbul.yml ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── client │ ├── auth-agent.emit.md │ ├── auth-agent.md │ ├── auth-agent.off.md │ ├── auth-agent.on.md │ ├── auth-agent.once.md │ └── open-login-popup.md ├── feathers-authentication-popups.md └── server │ └── express.md ├── express.js ├── handler.js ├── mocha.opts ├── package.json ├── src ├── feathers-authentication-popups.js └── handler.js └── test └── index.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.gitignore -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.istanbul.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/README.md -------------------------------------------------------------------------------- /docs/client/auth-agent.emit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/client/auth-agent.emit.md -------------------------------------------------------------------------------- /docs/client/auth-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/client/auth-agent.md -------------------------------------------------------------------------------- /docs/client/auth-agent.off.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/client/auth-agent.off.md -------------------------------------------------------------------------------- /docs/client/auth-agent.on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/client/auth-agent.on.md -------------------------------------------------------------------------------- /docs/client/auth-agent.once.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/client/auth-agent.once.md -------------------------------------------------------------------------------- /docs/client/open-login-popup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/client/open-login-popup.md -------------------------------------------------------------------------------- /docs/feathers-authentication-popups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/feathers-authentication-popups.md -------------------------------------------------------------------------------- /docs/server/express.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/docs/server/express.md -------------------------------------------------------------------------------- /express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/express.js -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/handler.js -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/mocha.opts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/package.json -------------------------------------------------------------------------------- /src/feathers-authentication-popups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/src/feathers-authentication-popups.js -------------------------------------------------------------------------------- /src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/src/handler.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-authentication-popups/HEAD/test/index.test.js --------------------------------------------------------------------------------