I use angular-cli to create a new project. Now I want to add socketJs to the project, but keep getting errors in the browser console:
GET http://localhost:4200/url-parse 404 (Not Found) GET http://localhost:4200/inherits 404 (Not Found) Unhandled Promise rejection: Error: XHR error (404 Not Found) loading http://localhost:4200/url-parse at XMLHttpRequest.wrapFn [as _onreadystatechange] (http://localhost:4200/vendor/zone.js/dist/zone.js:769:30) at ZoneDelegate.invokeTask (http://localhost:4200/vendor/zone.js/dist/zone.js:356:38) at Zone.runTask (http://localhost:4200/vendor/zone.js/dist/zone.js:256:48) at XMLHttpRequest.ZoneTask.invoke (http://localhost:4200/vendor/zone.js/dist/zone.js:423:34) Error loading http://localhost:4200/url-parse as "url-parse" from http://localhost:4200/vendor/sockjs-client/lib/main.js ; Zone: <root> ; Task: Promise.then ; Value: Error: Error: XHR error (404 Not Found) loading http://localhost:4200/url-parse(β¦) Error: Uncaught (in promise): Error: Error: XHR error (404 Not Found) loading http://localhost:4200/url-parse(β¦) GET http://localhost:4200/json3 404 (Not Found) GET http://localhost:4200/debug 404 (Not Found) GET http://localhost:4200/events 404 (Not Found) GET http://localhost:4200/eventsource 404 (Not Found) GET http://localhost:4200/crypto 404 (Not Found) GET http://localhost:4200/json3 404 (Not Found) GET http://localhost:4200/url-parse 404 (Not Found) GET http://localhost:4200/debug 404 (Not Found) GET http://localhost:4200/inherits 404 (Not Found) Assertion failed: loading or loaded GET http://localhost:4200/events 404 (Not Found) Assertion failed: loading or loaded GET http://localhost:4200/faye-websocket 404 (Not Found) Assertion failed: loading or loaded GET http://localhost:4200/eventsource 404 (Not Found) Assertion failed: loading or loaded GET http://localhost:4200/http 404 (Not Found) GET http://localhost:4200/https 404 (Not Found)
These are my steps and settings:
typings install sockjs-client
angular-cli-build.js
var Angular2App = require('angular-cli/lib/broccoli/angular2-app'); module.exports = function(defaults) { return new Angular2App(defaults, { vendorNpmFiles: [ 'systemjs/dist/system-polyfills.js', 'systemjs/dist/system.src.js', 'zone.js/dist/**/*.+(js|js.map)', 'es6-shim/es6-shim.js', 'reflect-metadata/**/*.+(ts|js|js.map)', 'rxjs/**/*.+(js|js.map)', '@angular/**/*.+(js|js.map)', 'sockjs-client/**/*.+(js)' ] }); };
system-config.ts
const map: any = { 'sockjs-client': 'vendor/sockjs-client/lib/entry.js' }; const packages: any = { 'vendor/sockjs-client/lib': { 'format': 'cjs', 'defaultExtension': 'js' } };
My custom service class:
import { Injectable } from '@angular/core'; import * as SockJS from 'sockjs-client'; import BaseEvent = __SockJSClient.BaseEvent; import SockJSClass = __SockJSClient.SockJSClass; @Injectable() export class WebsocketService { private sockJs: SockJSClass; constructor() { console.log('constuctor'); this.sockJs = new SockJS('/hello'); } }
Please let me know how to fix this, thanks a lot!
I can, however, fix some error by including the missing lib, adding them one by one to system-config.ts. But I doubt that this is the right approach.
const map: any = { 'sockjs-client': 'vendor/sockjs-client/lib/entry.js', 'json3': 'vendor/sockjs-client/node_modules/json3/lib/json3.js', 'url-parse': 'vendor/sockjs-client/node_modules/url-parse/index.js', 'inherits': 'vendor/sockjs-client/node_modules/inherits/inherits.js', 'debug': 'vendor/sockjs-client/node_modules/debug/debug.js', ... };