BSBinod Swaininbinod.hashnode.dev路Feb 19, 2023 路 2 min readAxios interceptorImport the package and create an axios instance. const axios = require("axios"); const instance = axios.create(); Let's add functions that execute during lifecycle of network call. .use takes two functions as argument. First function is executed on ...00
BSBinod Swaininbinod.hashnode.dev路Aug 26, 2021 路 2 min readDeploy on demand SSL certificate with CaddyI was looking for a solution that will provision SSL certificate to domains that point to my load balancer, so I can add "Custom domain setup" block in feature section of my project 馃槉. I have come across different articles that suggest to try Openre...00
BSBinod Swaininbinod.hashnode.dev路Aug 26, 2021 路 1 min readAutomatic HTTPS with CaddyNginx is a popular web server that can act as reverse proxy, load balancer etc. And to serve the content over HTTPS, the nginx config needs to be updated with SSL configuration. Certbot is a great tool for generating Free SSL certificate from Let's e...00A
BSBinod Swaininbinod.hashnode.dev路Sep 10, 2020 路 8 min readSetting up GitHub Actions for automated tasksGitHub Actions help in integrating CI/CD so you can test, build, deploy your code right from GitHub. In this post, we will set up a couple of workflows to run when a PR is raised to any branch. List of workflows to setup: automated testing validate ...00