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
[](https://github.com/dev-aditya-lab)
8
18
9
19
10
-
A modular toolkit that brings powerful browser APIs to your fingertips. With a simple import, you can access clipboard, notifications, battery status, geolocation, network info, dark mode, vibration, and more—no boilerplate, no fuss.
11
-
12
20
---
13
21
14
-
## 🔍 Short Description
22
+
## 📦 About the Project
23
+
24
+
**WebDev Power Kit** is a TypeScript-powered, modular toolkit designed to make common browser tasks and utility features incredibly simple and developer-friendly.
25
+
26
+
Whether you're building SPAs, dashboards, dev tools, or internal tools — this package saves you from writing repetitive, error-prone code.
15
27
16
28
Write clean, future-ready web apps with ease using modern browser features in just one line of code:
Explore detailed guides, feature docs, and examples in the docs section:
21
46
47
+
👉 [View Full Documentation](https://webdev-power-kit.hashnode.dev/docs/introduction)
22
48
23
-
## 📌 Introduction
49
+
**Structure Includes:**
24
50
25
-
Webdev Power Kit is a TypeScript-powered library built for web developers who want to leverage browser features without spending time on repetitive setup. Whether you’re building projects, teaching, or just experimenting, this toolkit offers:
51
+
* ✨ Features
52
+
* 📥 Parameters
53
+
* 🔁 Return values
54
+
* ⚛️ React usage examples
55
+
* 🚨 Error handling tips
56
+
* 📦 Real world use cases
57
+
* 🔐 Browser support tables
26
58
27
-
* 🧱 Simple, modular functions
28
-
* 💻 Full TypeScript support
29
-
* ⚛️ Framework-agnostic usage
30
-
* 🌍 Real-world features: dark mode toggle, idle timer, network detection, tab visibility, and more
59
+
Each page is written for **developers**, not bots. With TypeScript context and practical examples that work in real apps.
31
60
32
61
---
33
62
34
63
## 📦 Installation
35
64
36
-
### Via NPM/Yarn:
37
-
38
65
```bash
39
66
npm install webdev-power-kit
40
67
# or
41
68
yarn add webdev-power-kit
42
69
```
43
-
44
70
### Via CDN (ES Module):
45
71
46
72
```html
@@ -49,9 +75,6 @@ yarn add webdev-power-kit
49
75
copyToClipboard('Hello via CDN!');
50
76
</script>
51
77
```
52
-
53
-
---
54
-
55
78
## ⚡ Quickstart
56
79
57
80
### HTML (CDN ESM):
@@ -72,76 +95,77 @@ export default function App() {
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "webdev-power-kit",
3
-
"version": "2.1.0",
3
+
"version": "2.1.1",
4
4
"description": "A powerful toolkit that simplifies access to browser features like clipboard, notifications, battery, vibration, and more — perfect for modern web developers.",
0 commit comments