Category: React

  • Typescript – Step by Step Guide to setup with React

    If you’re a React developer, you might have heard of TypeScript, a popular programming language that adds static typing to JavaScript. Using TypeScript with React can help you write more maintainable code, catch errors earlier, and improve your overall development experience. In this guide, we’ll go through the step-by-step process of setting up a React […]

  • Configuring Typescript with React

    In this part, let’s setup typescript in our React client app. Step 1 : Install Here’s what each package is for : typescript – the library that converts Typescript files (file extension with .ts or .tsx) in to javascript. ts-loader – webpack loader that integrates typescript in to webpack. webpack uses this loader to help […]

  • Form Validations using React-Bootstrap, Formik and Yup

    Recently I was working with React Bootstrap forms, and I wanted to add validations, so I am sharing the code you can use to hookup Formik and also utilizing Yup to add schema based validations to your React-Bootstrap forms. I could not find much resource building the same, hope you find it easy now. React-Bootstrap […]