@buerli.io/classcad-windows-x64 v0.0.0-experimental.2
The ClassCAD Binaries
⚠️ Currently only available for beta users!
Introduction
In short, ClassCAD is a framework for developing CAD-based applications. ClassCAD enables the efficient development of complex applications that require classic CAD-functionality.
Getting Started
You can install the classcad binaries with
npm
oryarn
by running the install command in your package folder.npm i @buerli.io/classcad-windows-x64 or yarn add @buerli.io/classcad-windows-x64
Go to buerli.io, sign up for a user account and download the required application package. Place the downloaded
ccapp
in a secure folder on your local system.Since this file contains sensitiv data, be sure to keep it private and do not commit it to any source control. It is not allowed to distribute the
ccapp
packages in any form.⚠️ Important! The user area of buerli.io is under construction and not available yet!
For ease of use, it is a good idea to create a new script in your
package.json
.// package.json "scripts": { "ccs": "classcad-server --help" }
To test the setup, please run
npm run ccs
oryarn ccs
in a terminal window and you should get the following output.-p, --port The server port [number] [default: 8080] -n, --inst The number of classcad instances to start [number] [default: 1] -c, --ccapp The path to the classcad app file (ccapp) [string] [default: "./downloads/xxx.ccapp"] --version Show version number [boolean] --help Show help [boolean]
Now, you're ready to start
ClassCAD
. Modify the script in package.json according to your needs. Make sure to provide the properccapp
package path to the--ccapp
option.// package.json "scripts": { "ccs": "classcad-server --port 8182 --inst 1 --ccapp C:/Users/private/xxx.ccapp" }
5 years ago
5 years ago