mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-07-21 09:38:31 +02:00
67cc0fb846
``` const JWTOptions: JwtAuthOptions = { secret: process.env.JWT_SECRET as string, timeout: 5_000, decodedPropertyName: 'decodedToken', }; ``` Without the change I made and the options snipped above where the secret is actualy "undefined" because the .env file wasn't loaded yet you get a really weird situation that's very hard to debug. With "undefined" used as secret the client will successfully connect and send its "authenticate" event without a problem. But the server will not do anything. No errors, no timeouts, nothing. |
||
---|---|---|
.. | ||
index.js | ||
UnauthorizedError.js |