Lukas Aichbauer
Lukas Aichbauer
Right now there is no way to detect if a message is longer than maxChar. We should add a feature that allows us to show every character over maxChar in...
Currently the access token is valid as long as the expiration time is set to and than the user has to re-authenticate. This means if the token is valid for...
We should let the user know if they use a unsafe JWT_SECRET when they are not using `production`. `jsonwebtoken` uses `HS256` as algorithmen, I read an [article](https://auth0.com/blog/brute-forcing-hs256-is-possible-the-importance-of-using-strong-keys-to-sign-jwts/) that it is...
Right now there is no example of how to upload a file, document, image. To upload files we should use [multer](https://github.com/expressjs/multer), only allowing the specified terms in a multipart/form-data. Almost...
Currently the access token is valid as long as the expiration time is set to and than the user has to re-authenticate. This means if the token is valid for...
Right now we define our types with `JavaScript` and I do not plan on changing this in this project since, I like writing everything in the same language. But with...