cadviewer 6.8.64 → 6.8.65

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 CHANGED
@@ -1,8 +1,23 @@
1
1
  # Installing CADViewer
2
2
 
3
- ## CADViewer for ReactJS, Angular and VueJS
3
+ ## CADViewer for frameworks (ReactJS, VueJS, Angular etc.)
4
4
 
5
- Install CADViewer via *npm i cadviewer* on all platforms, see specifics below for each platform on how to add auxillary files and connect with back-end conversion server.
5
+ Install CADViewer with
6
+
7
+ ```
8
+ npm i cadviewer
9
+ ```
10
+ on all framework platforms. See specifics below for each platform on how to add auxillary files and connect with back-end CAD conversion server.
11
+
12
+ ***NOTE:*** If, during installation, getting an "An unknown git error occurred" for unsupported option "accept-new", then the issue is the SSH key, which in some environments can be troublesome to set up. To bypass this (on Windows/MAC/Linux) simply run:
13
+
14
+ ```
15
+ git config --global url."https://".insteadOf git://
16
+ ```
17
+
18
+ This forces the use of https instead of SSH and will then be successful in installing CADViewer through ***npm***.
19
+
20
+ ***NOTE 2:*** For plain-vanilla JavaScript top-level library, please use our [GitHub](https://github.com/CADViewer/cadviewer-script-library) repository [cadviewer-script-library](https://github.com/CADViewer/cadviewer-script-library).
6
21
 
7
22
 
8
23
  ## Install Instructions for ReactJS and VueJS
@@ -90,7 +105,7 @@ Note that the path book-keeping is important for proper initialization, where th
90
105
 
91
106
  var ServerBackEndUrl = "http://localhost:3000/";
92
107
  var ServerUrl = "http://localhost:4200/";
93
- var ServerLocation = "c:/nodejs/cadviewer-conversion-server/";
108
+ var ServerLocation = ""; // leave blank, for devopment purposes can be set: c:/nodejs/cadviewer-conversion-server/
94
109
 
95
110
  The CADViewer Angular JS general install instructions are at: https://cadviewer.com/cadviewertechdocs/handlers/angular/
96
111