├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── LICENCE ├── README.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── api │ └── config.json ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── rawdata │ │ │ ├── rawdata.component.css │ │ │ ├── rawdata.component.html │ │ │ ├── rawdata.component.spec.ts │ │ │ └── rawdata.component.ts │ │ └── status │ │ │ ├── status.component.css │ │ │ ├── status.component.html │ │ │ ├── status.component.spec.ts │ │ │ └── status.component.ts │ ├── index.ts │ └── services │ │ ├── config │ │ ├── config.service.spec.ts │ │ └── config.service.ts │ │ └── stomp │ │ ├── index.ts │ │ ├── stomp.config.ts │ │ ├── stomp.service.spec.ts │ │ └── stomp.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/README.md -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/api/config.json -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/rawdata/rawdata.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/rawdata/rawdata.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/components/rawdata/rawdata.component.html -------------------------------------------------------------------------------- /src/app/components/rawdata/rawdata.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/components/rawdata/rawdata.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/rawdata/rawdata.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/components/rawdata/rawdata.component.ts -------------------------------------------------------------------------------- /src/app/components/status/status.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/status/status.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/components/status/status.component.html -------------------------------------------------------------------------------- /src/app/components/status/status.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/components/status/status.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/status/status.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/components/status/status.component.ts -------------------------------------------------------------------------------- /src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/index.ts -------------------------------------------------------------------------------- /src/app/services/config/config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/services/config/config.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/services/config/config.service.ts -------------------------------------------------------------------------------- /src/app/services/stomp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/services/stomp/index.ts -------------------------------------------------------------------------------- /src/app/services/stomp/stomp.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/services/stomp/stomp.config.ts -------------------------------------------------------------------------------- /src/app/services/stomp/stomp.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/services/stomp/stomp.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/stomp/stomp.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/app/services/stomp/stomp.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjmf/ng2-stompjs-demo/HEAD/tslint.json --------------------------------------------------------------------------------