-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (56 loc) · 2.81 KB
/
index.html
File metadata and controls
62 lines (56 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>objectPropValidator | Advanced JavaScript Object Validation</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">
<meta name="description" content="A lightweight, zero-dependency JavaScript utility for validating object properties against a schema, with support for nested objects and custom validators.">
<meta name="keywords" content="javascript, validation, object, validator, schema, properties, props, nested validation, js library">
<meta name="author" content="MAMEDUL ISLAM">
<!-- Favicon -->
<link rel="icon" type="image/png" href="https://avatars.githubusercontent.com/u/8552368?s=48">
<!-- Docsify Theme -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<!-- Open Graph / Social Media Meta Tags -->
<meta property="og:title" content="objectPropValidator | Simple JavaScript Object Validation">
<meta property="og:description" content="A lightweight, zero-dependency utility for validating object properties against a schema.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mamedul.github.io/objectpropvalidator/">
<meta property="og:image" content="https://mamedul.github.io/objectpropvalidator/screencapture-github-mamedul-objectpropvalidator.png"> <!-- Suggested path for an Open Graph image -->
<!-- JSON-LD Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "objectPropValidator",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Cross-platform",
"description": "A lightweight, zero-dependency JavaScript utility for validating object properties against a defined schema, with support for nested objects and custom validators.",
"url": "https://mamedul.github.io/objectpropvalidator/",
"author": {
"@type": "Person",
"name": "MAMEDUL ISLAM",
"url": "https://mamedul.github.io"
},
"license": "https://opensource.org/licenses/MIT",
"keywords": "javascript, validation, object, validator, schema, properties"
}
</script>
</head>
<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: 'objectPropValidator',
repo: 'https://github.com/mamedul/objectpropvalidator',
loadSidebar: false, // Set to true if you add a _sidebar.md
homepage: 'README.md', // Loads your README.md as the main page
auto2top: true, // Automatically scroll to top on page change
themeColor: '#42b983', // Vue.js green theme color
}
</script>
<!-- Docsify v4 -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>