#reactjs

Run ESLint on git commit with Husky and Lint Staged

Published by Prabin Poudel 6 min read
cover: Run ESLint on git commit with Husky and Lint Staged
How do you make sure every member in your team follows best coding practices and never commits code with issues to remote repository? Answer is using Husky package and git hooks. You can configure Husky to run ESLint on modified codes before committing those code to git.

Reset password in react and rails app with devise

Published by Prabin Poudel 4 min read
cover: Reset password in react and rails app with devise
This tutorial shows you how to send reset password instructions email in React and Rails app. Learn about these steps to reset password for Rails/React app with Devise.