Skip to content

Commit 1c895fe

Browse files
authored
Merge pull request #5 from joelburget/patch-1
Remove extra "npm i"s.
2 parents b5bb0c4 + 543b786 commit 1c895fe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.MD

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@ This package generates a unique ID/String for different browsers. Like chrome, F
3333
Using npm:
3434
```JavaScript
3535
//Install:
36-
npm i npm i @rajesh896/broprint.js
36+
npm i @rajesh896/broprint.js
3737
```
3838
Using Yarn:
3939
```Javascript
4040
//Install:
41-
yarn add npm i @rajesh896/broprint.js
41+
yarn add @rajesh896/broprint.js
4242
```
4343
<br/><br/>
4444
## :tada: Examples
4545
>### **In Reactjs**
4646
```javascript
47-
import { getCurrentBrowserFingerPrint } from "npm i @rajesh896/broprint.js";
47+
import { getCurrentBrowserFingerPrint } from "@rajesh896/broprint.js";
4848

4949
getCurrentBrowserFingerPrint().then((fingerprint) => {
5050
// fingerprint is your unique browser id.
@@ -56,7 +56,7 @@ getCurrentBrowserFingerPrint().then((fingerprint) => {
5656
<br/>
5757

5858
>### Using this script in the html files
59-
1. Execute `npm i npm i @rajesh896/broprint.js`
59+
1. Execute `npm i @rajesh896/broprint.js`
6060
2. Then -
6161
```html
6262
<!DOCTYPE html>
@@ -71,7 +71,7 @@ getCurrentBrowserFingerPrint().then((fingerprint) => {
7171

7272
<body>
7373
<script type="module">
74-
import("./node_modules/npm i @rajesh896/broprint.js/index.js").then((module) => {
74+
import("./node_modules/@rajesh896/broprint.js/index.js").then((module) => {
7575
module.getCurrentBrowserFingerPrint().then((fingerprint) => {
7676
console.log(fingerprint);
7777
})

0 commit comments

Comments
 (0)