-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (79 loc) · 4.01 KB
/
index.html
File metadata and controls
86 lines (79 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>node-hooker | WordPress-like Hooks for Node.js & JavaScript</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- SEO Core -->
<meta name="description" content="A powerful, zero-dependency hook system for Node.js, inspired by the WordPress actions and filters API. Create extensible and decoupled applications with node-hooker.">
<meta name="keywords" content="node.js, javascript, hook, action, filter, events, event emitter, plugin, extensible, decoupled, wordpress hooks, node-hooker">
<meta name="author" content="MAMEDUL ISLAM">
<link rel="canonical" href="https://mamedul.github.io/node-hooker/" />
<!-- App Meta Tags -->
<link rel="icon" type="image/png" href="./icons/hook_32x32.png">
<meta name="theme-color" content="#42b983"/>
<link rel="apple-touch-icon" sizes="180x180" href="./icons/hook_180x180.png">
<link rel="icon" type="image/png" sizes="32x32" href="./hook_32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./hook-16x16.png">
<link rel="shortcut icon" type="image/x-icon" href="./hook.ico" />
<!-- Docsify Theme -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css" title="vue">
<!-- Open Graph / Social Media Meta Tags -->
<meta property="og:title" content="node-hooker | WordPress-like Hooks for Node.js">
<meta property="og:description" content="A powerful, zero-dependency hook system for Node.js, inspired by the WordPress actions and filters API.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mamedul.github.io/node-hooker/">
<meta property="og:image" content="https://mamedul.github.io/node-hooker/node-hooker-og-image.png">
<meta property="og:site_name" content="node-hooker Documentation">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@mamedul">
<meta name="twitter:title" content="node-hooker | WordPress-like Hooks for Node.js">
<meta name="twitter:description" content="A powerful, zero-dependency hook system for Node.js, inspired by the WordPress actions and filters API.">
<meta name="twitter:image" content="https://mamedul.github.io/node-hooker/node-hooker-og-image.png">
<!-- Geo and Time Meta Tags -->
<meta name="dcterms.created" content="2025-09-07T23:39:00+06:00">
<meta name="geo.region" content="BD-C">
<meta name="geo.placename" content="Rangpur">
<meta name="geo.position" content="25.9186;89.0460">
<meta name="ICBM" content="25.9186, 89.0460">
<!-- JSON-LD Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "node-hooker",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Cross-platform",
"description": "A powerful, zero-dependency hook system for Node.js and JavaScript, inspired by the WordPress actions and filters API. Ideal for creating extensible and decoupled plugin architectures.",
"url": "https://mamedul.github.io/node-hooker/",
"author": {
"@type": "Person",
"name": "MAMEDUL ISLAM",
"url": "https://github.com/mamedul"
},
"license": "https://opensource.org/licenses/MIT",
"keywords": "node.js, javascript, hook, action, filter, events, event emitter, plugin, wordpress hooks, node-hooker"
}
</script>
</head>
<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: 'node-hooker',
repo: 'https://github.com/mamedul/node-hooker',
loadSidebar: false,
homepage: 'README.md',
auto2top: true,
themeColor: '#42b983',
search: 'auto',
}
</script>
<!-- Docsify Core -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- Docsify Plugins -->
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
</body>
</html>