├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json ├── samples ├── chat │ ├── README.md │ ├── app.js │ ├── authentication.js │ ├── index.js │ ├── models.js │ └── public │ │ ├── app.js │ │ └── index.html └── posts │ ├── README.md │ ├── index.js │ └── models.js ├── src └── index.js └── test └── index.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.enable": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/package.json -------------------------------------------------------------------------------- /samples/chat/README.md: -------------------------------------------------------------------------------- 1 | # Featherjs chat with NextQL -------------------------------------------------------------------------------- /samples/chat/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/chat/app.js -------------------------------------------------------------------------------- /samples/chat/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/chat/authentication.js -------------------------------------------------------------------------------- /samples/chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/chat/index.js -------------------------------------------------------------------------------- /samples/chat/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/chat/models.js -------------------------------------------------------------------------------- /samples/chat/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/chat/public/app.js -------------------------------------------------------------------------------- /samples/chat/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/chat/public/index.html -------------------------------------------------------------------------------- /samples/posts/README.md: -------------------------------------------------------------------------------- 1 | # Nested services sample -------------------------------------------------------------------------------- /samples/posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/posts/index.js -------------------------------------------------------------------------------- /samples/posts/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/samples/posts/models.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giapnguyen74/nextql-feathers/HEAD/test/index.test.js --------------------------------------------------------------------------------