Richard Habermann

Results 23 comments of Richard Habermann

@Zaaaoo your solution gives me `Cannot find name 'pdf'.`

needs following dependencies: ``` "peerDependencies": { "@angular/core": ">= 8.0.0" }, "devDependencies": { "@angular/common": "^8.2.14", "@angular/compiler": "^8.2.14", "@angular/compiler-cli": "^8.2.14", "@angular/core": "^8.2.14", "@angular/platform-browser": "^8.2.14", "@angular/platform-browser-dynamic": "^8.2.14", "@compodoc/compodoc": "^1.0.0-beta.9", "@types/assert": "0.0.31", "@types/jasmine": "^2.5.47",...

for angular 9 support I used this: ``` "peerDependencies": { "@angular/core": ">= 9.0.0" }, "devDependencies": { "@angular/common": "^9.1.11", "@angular/compiler": "^9.1.11", "@angular/compiler-cli": "^9.1.11", "@angular/core": "^9.1.11", "@angular/platform-browser": "^9.1.11", "@angular/platform-browser-dynamic": "^9.1.11", "@compodoc/compodoc": "^1.0.0-beta.9",...

Will there be an actual solution? I found that throwing an error works fine but not calling next

Hey, works for me. But I need to give the $ref as the exact same string as the $id was. ```ts fastify.addSchema({ $id: 'User', type: 'object', description: 'User basic data',...

This then has the issue, that on('connection') is no longer being called See: https://github.com/socketio/socket.io/issues/3082

This is now almost a year old. I am having this again in another project. Using socket.io 4. Ist this project still being maintained?

I am doing some research currently. My setup: Node LTS, express server. The problem is located here: https://github.com/typestack/socket-controllers/blob/eea8d9593c025502bc95350e8f36c5b248bc1db8/src/SocketControllerExecutor.ts#L74 The middleware is not called, because the socket.io middleware in which it...

One other suggestion: I am using a custom namespace. It seems like the middleware is namespace-specific: https://github.com/socketio/socket.io/issues/3082

Confirmed last statement: Tested with code like this: ```ts io.of('/my-namespace') .use((socket, next) => { console.log('middleware running with namespace...'); next(); }); io.use((socket, next) => { console.log('middleware running in general...'); next(); });...