jedison 0.1.1 → 0.2.0
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 +4 -0
- package/README.md +18 -1
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +380 -275
- 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
|
@@ -109,6 +109,24 @@ Check Out the [PLAYGROUND](https://germanbisurgi.github.io/jedison/index.html?th
|
|
|
109
109
|
|
|
110
110
|
## Getting Started
|
|
111
111
|
|
|
112
|
+
## Install
|
|
113
|
+
|
|
114
|
+
### Package manager
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
npm install jedison
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
yarn add jedison
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### CDN
|
|
125
|
+
|
|
126
|
+
```html
|
|
127
|
+
<script src="https://cdn.jsdelivr.net/npm/jedison@0.1.1/dist/umd/jedison.umd.js"></script>
|
|
128
|
+
```
|
|
129
|
+
|
|
112
130
|
### As a Validator
|
|
113
131
|
|
|
114
132
|
```javascript
|
|
@@ -133,7 +151,6 @@ init()
|
|
|
133
151
|
### As an Editor
|
|
134
152
|
|
|
135
153
|
```html
|
|
136
|
-
|
|
137
154
|
<div id="jedison-container"></div>
|
|
138
155
|
```
|
|
139
156
|
|