0.0.0-experimental.2 • Published 5 years ago

@buerli.io/classcad-windows-x64 v0.0.0-experimental.2

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

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

  1. You can install the classcad binaries with npm or yarn by running the install command in your package folder.

        npm i @buerli.io/classcad-windows-x64
        or
        yarn add @buerli.io/classcad-windows-x64
  2. 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!

  3. 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"
    }
  4. To test the setup, please run npm run ccs or yarn 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]
  5. Now, you're ready to start ClassCAD. Modify the script in package.json according to your needs. Make sure to provide the proper ccapp package path to the --ccapp option.

    // package.json
    "scripts": {
      "ccs": "classcad-server --port 8182 --inst 1 --ccapp C:/Users/private/xxx.ccapp"
    }