RKRajesh Kumar Yadavinrajeshkumaryadav.dev·Jun 5, 2021 · 2 min readAngular : How to add A fully customizable, one-time password input component in your angular app just in 10 minutes?You can use this component in your app and extend it to SMS API, here I will skip API part as it varies from sms provider to provider. Let's begin to learn how to add otp component in your angular app. Step 1 - Install dependency npm install --sa...00
RKRajesh Kumar Yadavinrajeshkumaryadav.dev·Jun 1, 2021 · 2 min readAngular : How to automate angular deployment for AWS S3 Angular Website??If you have hosted your angular app to AWS S3 then you can automate your ng build -prod and drag and drop to S3 bucket by simply following below steps - Step 1 - Add @jefiozie/ngx-aws-deploy to your project and for this run below command (your angu...00
RKRajesh Kumar Yadavinrajeshkumaryadav.dev·Jun 1, 2021 · 2 min readAngular : How to automate angular deployment for AWS S3 Angular Website??If you have hosted your angular app to AWS S3 then you can automate your ng build -prod and drag and drop to S3 bucket by simply following below steps - Step 1 - Add @jefiozie/ngx-aws-deploy to your project and for this run below command (your angu...00
RKRajesh Kumar Yadavinrajeshkumaryadav.dev·May 30, 2021 · 2 min readHTML : Disable resizing of textareaWhat is textarea? The <textarea> element is often used in a form, to collect user inputs like comments or reviews. A text area can hold an unlimited number of characters. How to resize texarea? You can resize a textarea by clicking on the bottom righ...00
RKRajesh Kumar Yadavinrajeshkumaryadav.dev·May 22, 2021 · 2 min readNode.js : Check Permissions of a File or Directoryfs.access() determines whether a path exists and what permissions a user has to the file or directory at that path. fs.access doesn't return a result rather, if it doesn't return an error, the path exists and the user has the desired permissions. The...00