jedison 0.1.1 → 0.2.1
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/CHANGELOG.md +9 -0
- package/README.md +25 -2
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +412 -297
- package/dist/esm/jedison.js.map +1 -1
- package/dist/umd/jedison.umd.js +1 -1
- package/dist/umd/jedison.umd.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -4,7 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
Generates forms from JSON schemas. Can be used in backend to validate JSON data too.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## 🚀 Quick Links
|
|
8
|
+
|
|
9
|
+
🎮 **[Playground](https://germanbisurgi.github.io/jedison/index.html?theme=bootstrap5)**
|
|
10
|
+
Test and experiment with configuration options in a live environment.
|
|
11
|
+
|
|
12
|
+
📖 **[Documentation](https://germanbisurgi.github.io/jedison-docs/)**
|
|
13
|
+
Learn how to use Jedison with detailed guides and interactive examples.
|
|
8
14
|
|
|
9
15
|
# Table of Contents
|
|
10
16
|
|
|
@@ -109,6 +115,24 @@ Check Out the [PLAYGROUND](https://germanbisurgi.github.io/jedison/index.html?th
|
|
|
109
115
|
|
|
110
116
|
## Getting Started
|
|
111
117
|
|
|
118
|
+
## Install
|
|
119
|
+
|
|
120
|
+
### Package manager
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
npm install jedison
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
yarn add jedison
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### CDN
|
|
131
|
+
|
|
132
|
+
```html
|
|
133
|
+
<script src="https://cdn.jsdelivr.net/npm/jedison@0.1.1/dist/umd/jedison.umd.js"></script>
|
|
134
|
+
```
|
|
135
|
+
|
|
112
136
|
### As a Validator
|
|
113
137
|
|
|
114
138
|
```javascript
|
|
@@ -133,7 +157,6 @@ init()
|
|
|
133
157
|
### As an Editor
|
|
134
158
|
|
|
135
159
|
```html
|
|
136
|
-
|
|
137
160
|
<div id="jedison-container"></div>
|
|
138
161
|
```
|
|
139
162
|
|