fubi 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -3
- package/package.json +17 -2
package/README.md
CHANGED
|
@@ -5,12 +5,12 @@ Fubi is a lightweight, universal in-page feedback and collaboration tool. It all
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- 🎯 **Element Isolation**: Select and isolate specific page elements for targeted feedback
|
|
8
|
-
- 💬 **Threads
|
|
8
|
+
- 💬 **Threads & Comments**: Create comment threads attached to specific page elements
|
|
9
9
|
- ✅ **Mark as Done**: Track progress by marking feedback threads as completed
|
|
10
10
|
- 🔄 **Page Switcher**: Easily navigate between pages where feedback is provided
|
|
11
|
-
- ⚡ **Real-time
|
|
11
|
+
- ⚡ **Real-time**: Get notified of new comments and changes instantly
|
|
12
12
|
- 🔌 **Easy Integration**: Simple to integrate into any web application
|
|
13
|
-
- 📦 **Tiny
|
|
13
|
+
- 📦 **Tiny**: Lightweight package with minimal impact on your website
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
@@ -32,6 +32,16 @@ const app = fubi({
|
|
|
32
32
|
});
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
+
## Activation
|
|
36
|
+
|
|
37
|
+
To open the Fubi feedback interface, simply add the `fubi` parameter to your URL:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
https://yourwebsite.com/?fubi
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
This makes it easy to share feedback-enabled links with your team.
|
|
44
|
+
|
|
35
45
|
## Getting Started
|
|
36
46
|
|
|
37
47
|
To use Fubi, you'll need to create an account at [fubi.dev](https://fubi.dev) where you can set up your projects and manage your feedback.
|
package/package.json
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fubi",
|
|
3
|
-
"
|
|
3
|
+
"description": "A lightweight, universal in-page feedback and collaboration tool for web applications.",
|
|
4
|
+
"author": "Wonder Makers",
|
|
5
|
+
"version": "0.1.3",
|
|
6
|
+
"homepage": "https://fubi.dev",
|
|
4
7
|
"type": "module",
|
|
5
8
|
"scripts": {
|
|
6
9
|
"dev": "vite",
|
|
@@ -34,5 +37,17 @@
|
|
|
34
37
|
"rollup-plugin-postcss": "^4.0.2",
|
|
35
38
|
"tailwindcss": "^4.0.9",
|
|
36
39
|
"vite-plugin-css-injected-by-js": "^3.5.2"
|
|
37
|
-
}
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"feedback",
|
|
43
|
+
"collaboration",
|
|
44
|
+
"comments",
|
|
45
|
+
"annotation",
|
|
46
|
+
"ui-feedback",
|
|
47
|
+
"web-comments",
|
|
48
|
+
"feedback-tool",
|
|
49
|
+
"in-page-feedback",
|
|
50
|
+
"element-comments",
|
|
51
|
+
"realtime"
|
|
52
|
+
]
|
|
38
53
|
}
|