Nginx Proxy Manager is a web-based tool that simplifies the management of virtual hosts and reverse proxies in Nginx.
[Read More]Benefits of using Webhooks in Payment Integration
What are webhooks? Webhooks, an approach used to handle unpredictable state of an event. It is one of the techniques used to design event driven api.
Let’s say we need a status of a perticular resource. What we do in this scenario is we make a request to the api, the api might retrive the information interacting with a database then respond back to the client.
What if the resourse is not in a complete state?
[Read More]
Stripe Custom Styled Card Elements
If you are not satisfied with the pre styled components that Stripe provides then this post is for you.
When we’re dealing with credit card payment sometimes we might want the credit card forms to match with our web application’s theme so that the user might have a good visual experience. They have a nice example on their Docs. We are going to do some form customization today.
If you do not have an account with stripe create one and head over to the Dashboard and go to API keys section to grab your publishable key and secret key.
[Read More]
Sign In with LinkedIn
Implementation of LinkedIn login in your application is pretty straight forward. There are a few solutions out there. Some are using passport.js which I very much dislike since it loads a lots of unwanted modules you don’t need and it is intended for the use of Express.js based frameworks which uses middleware approach. If you use some other frameworks then it will not be of much help.
I will follow a more simplistic approach in this article following the Documentation.
[Read More]
PayPal Integration With Node.js and React
You might want to integrate PayPal to you sites for easy checkout. This article is to help you understand how easy it is to integrate PayPal in you sites.
[Read More]Configure axios to refresh access token
If you are working with an API which uses OAuth for authentication then you need to some way of refreshing your access token when it is expired to make sure a uninterrupted user experience. And for front-end application it is very important. Axios is a promise based HTTP client which comes with a lot of great feature.
[Read More]