Disable Right Click and F12 Developer Tools Option

If you want to disable right-click on your website and keyboard-f-12 browser developer tools option, You can add the following code on your site. You can use this script in any script file. //Disable right click $(document).on(“contextmenu”, function (e) { e.preventDefault(); }); //Disable F12 $(document).keydown(function (event) { if (event.keyCode == 123) { // Prevent F12…

create-react-app, installation error (“command not found”)

First, install the global package: npm install -g create-react-app Then, you can create a new app: create-react-app hello-world If you still face the error ”  create-react-app: command not found (React) error” Then, follow these stpes: 👇️ clear the npx cache, for this write this command: >> npx clear-npx-cache 👇️ Then, for normal React.js project type…