├── .editorconfig ├── .github ├── lock.yml └── workflows │ └── close-inactive-issues.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.ts ├── ng-package.json ├── package.json ├── src ├── config │ └── socket-io.config.ts ├── socket-io.module.ts └── socket-io.service.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/workflows/close-inactive-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/.github/workflows/close-inactive-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run format -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tslint.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/index.ts -------------------------------------------------------------------------------- /ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/ng-package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/package.json -------------------------------------------------------------------------------- /src/config/socket-io.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/src/config/socket-io.config.ts -------------------------------------------------------------------------------- /src/socket-io.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/src/socket-io.module.ts -------------------------------------------------------------------------------- /src/socket-io.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/src/socket-io.service.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodgc/ngx-socket-io/HEAD/tsconfig.json --------------------------------------------------------------------------------