You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# 🧠 dummytext
1
+
# 🧠 dummytextjs
2
2
3
-
**dummytext** is a lightweight utility to generate realistic dummy text (words, sentences, or paragraphs) for development and testing. It also supports automatic injection of dummy content into HTML elements via the `data-dummy` attribute.
3
+
**dummytextjs** is a lightweight utility to generate realistic dummy text (words, sentences, or paragraphs) for development and testing. It also supports automatic injection of dummy content into HTML elements via the `data-dummy` attribute.
4
4
5
5
---
6
6
@@ -17,7 +17,7 @@
17
17
## 📦 Installation
18
18
19
19
```bash
20
-
npm install dummytext
20
+
npm install dummytextjs
21
21
```
22
22
23
23
---
@@ -32,7 +32,7 @@ import {
32
32
generateSentences,
33
33
generateParagraphs,
34
34
autoInjectDummyContent
35
-
} from"dummytext";
35
+
} from"dummytextjs";
36
36
```
37
37
38
38
---
@@ -50,7 +50,7 @@ import {
50
50
51
51
<script setup>
52
52
import { ref, onMounted } from "vue";
53
-
import { generateWords } from "dummytext";
53
+
import { generateWords } from "dummytextjs";
54
54
55
55
const dummyText = ref("");
56
56
@@ -69,7 +69,7 @@ onMounted(() => {
69
69
70
70
<script setup>
71
71
import { onMounted } from "vue";
72
-
import { autoInjectDummyContent } from "dummytext";
72
+
import { autoInjectDummyContent } from "dummytextjs";
Copy file name to clipboardExpand all lines: package.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
{
2
-
"name": "dummytext",
2
+
"name": "dummytextjs",
3
3
"version": "3.0.0",
4
4
"description": "A plug-and-play dummy content generator for words, sentences, and paragraphs — with built-in auto-injection for Vue, React, and Angular apps using HTML data attributes.",
0 commit comments