VBVignesh B Sinvigneshbs.hashnode.dev·Aug 1, 2021 · 5 min readAuthentication with react, express, mongoose and jwt - part 2In the previous blog I had covered what authentication is, why json web tokens are used and the front end part of authentication. Now let us see how we can setup a server which authenticates the user. I'll be using MongoDB for storing the users recor...00
VBVignesh B Sinvigneshbs.hashnode.dev·Jul 30, 2021 · 6 min readAuthentication with react, express, mongoose and jwt - part 1In this post we will discuss authentication and how to perform it in react apps. This is part 1 of the post and will contain basic terminologies and frontend of our authentication app in react. In the second post we will discuss the backend of authe...00
VBVignesh B Sinvigneshbs.hashnode.dev·Jul 10, 2021 · 3 min readUnderstanding currying in JavaScriptCurrying is a technique which is very important in functional programming. It is not only used in JavaScript but used in other languages as well. Currying is a technique that applies a function to its arguments one at a time, with each application re...01K