Web Development

VS Code Editor Shortcut for HTML Boilerplate code

We can easily generate the boilerplate code for a basic Html file in the popular editor VS Code. This can be achieved by some... Read more »

HTML to React App — Convertion Steps

Create React App npx create-react-app app-name cd  app-name npm start Steps of conversion Copy paste css to index.cssCopy paste contents inside <body> to App.js  return dataReplace "class" with "className" ... Read more »

npx installation – Terminal Command

The npx stands for Node Package Execute and it comes with the npm. It is an npm package runner that can execute any package... Read more »