kenobi-js 0.1.28
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/README.md +12 -0
- package/dist/kenobi.js +2867 -0
- package/dist/kenobi.js.map +7 -0
- package/dist/kenobi.min.js +68 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
We're using NPM to host alpha versions of our web scripts. Things will be changing a lot so just reach out to us if you need help with anything!
|
|
2
|
+
|
|
3
|
+
### Getting started
|
|
4
|
+
|
|
5
|
+
```html
|
|
6
|
+
<!-- Put this script before the closing (</head>) tag -->
|
|
7
|
+
<script src="https://cdn.jsdelivr.net/npm/@kenobi.ai/js@0.0.1-alpha.0"></script>
|
|
8
|
+
<script defer>
|
|
9
|
+
window.Kenobi = new window.KenobiLib.Kenobi({ debug: true })
|
|
10
|
+
Kenobi.transform()
|
|
11
|
+
</script>
|
|
12
|
+
```
|