
JWT Authentication in Express.js using Passport.js
In the previous post, we created an express.js application step by step. If you haven’t read that post, I suggest you do it because the basic …

In the previous post, we created an express.js application step by step. If you haven’t read that post, I suggest you do it because the basic …
JavaScript, which was created to “make web pages alive”, is one of the feature-rich language. However, this scripting language has got …
JavaScript (ECMAScript) is one of the powerful scripting language which provides many features to developer. In the first place, it is the technology …
In the previous post, we implemented stacks, which is quite useful in real life. However, there is another data structure that we see everyday around …
In the previous post, we implemented linked list in C. In the same way, now we are going to implement stacks in c programming language by an example. …
Before starting to implement linked list in C, let’s see what self-referential structures are. Also, you need to know about dynamic memory …
In the previous article, we looked briefly on what pointers are. Furthermore, we learnt a simple implementation of pointers. In this post, I would …
In the previous blog post, I wrote about the relationship between pointer and array. I suggest you reading that post before starting here because this …