From 543b786b6fbc31476d3efeb56780f4f74aaa9392 Mon Sep 17 00:00:00 2001 From: Joel Burget Date: Mon, 9 Oct 2023 13:05:11 -0700 Subject: [PATCH] Remove extra "npm i"s. --- README.MD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.MD b/README.MD index 78e9cb8..c8c9bd2 100644 --- a/README.MD +++ b/README.MD @@ -33,18 +33,18 @@ This package generates a unique ID/String for different browsers. Like chrome, F Using npm: ```JavaScript //Install: -npm i npm i @rajesh896/broprint.js +npm i @rajesh896/broprint.js ``` Using Yarn: ```Javascript //Install: -yarn add npm i @rajesh896/broprint.js +yarn add @rajesh896/broprint.js ```

## :tada: Examples >### **In Reactjs** ```javascript -import { getCurrentBrowserFingerPrint } from "npm i @rajesh896/broprint.js"; +import { getCurrentBrowserFingerPrint } from "@rajesh896/broprint.js"; getCurrentBrowserFingerPrint().then((fingerprint) => { // fingerprint is your unique browser id. @@ -56,7 +56,7 @@ getCurrentBrowserFingerPrint().then((fingerprint) => {
>### Using this script in the html files - 1. Execute `npm i npm i @rajesh896/broprint.js` + 1. Execute `npm i @rajesh896/broprint.js` 2. Then - ```html @@ -71,7 +71,7 @@ getCurrentBrowserFingerPrint().then((fingerprint) => {