@avs/go 0.12.71730 → 0.12.71731

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 ADDED
@@ -0,0 +1,33 @@
1
+ [![npm](https://img.shields.io/npm/v/@avs/go.svg)](https://www.npmjs.com/package/@avs/go)
2
+ [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/avs-go)
3
+
4
+ # AVS/Go
5
+
6
+ Polymer 3.0 based elements for AVS.
7
+
8
+ ## Install
9
+ ```
10
+ npm install @avs/go
11
+ ```
12
+
13
+ ## Usage
14
+ ```html
15
+ <html>
16
+ <head>
17
+ <script type="module" src="@avs/go/src/avs-go-dataviz.js"></script>
18
+ <!-- or -->
19
+ <script src="@avs/go/dist/avs-go.min.js"></script>
20
+ </head>
21
+ <body>
22
+ <avs-go-dataviz
23
+ url="<url-to-avs-go-server>"
24
+ scene-name="MyGoScene"
25
+ renderer="<IMAGE|SVG|THREEJS>"
26
+ >
27
+ </avs-go-dataviz>
28
+ </body>
29
+ </html>
30
+ ```
31
+
32
+ ## License
33
+ Apache-2.0