How to create a user and bucket Amazon Web Services ( AWS )

How to create a user and bucket Amazon Web Services ( AWS )

Posted on

In this blog you will learn how to create amazon bucket and user and get the Access key ID and Secret access key for uploading files.. Step-1: Create an account on console.aws.amazon.com Step-2: Create user on console.aws.amazon.comOnce you have created the account Click on service > Security, Identity & Compliance > IAM Now click on Users > Add User

Read More

Browser APIs

Browser APIs

Posted on

Storage API Local Storage and Session Storage Few Important points: 1-Local Storage never expire.2. Session storage expire when the user closes the browser tab. Each browser tab will have a separate session.3. When you change local Storage data, an event gets fired that you can listen to. If user has open multiple tabs and changes

Read More

Set Up React App with WebPack and Babel

Set Up React App with WebPack and Babel

Posted on

In this blog you will learn to set up a React Application: Using create-react-app Using Webpack, Webpack Dev Server and Babel from scratch I am assuming that you have Node installed already on your system. Using create-react-app We will first install the create-react-app globally. Then we create a project using create-react-app command. npm install -g create-react-app create-react-app projectnamecd projectname npm run

Read More