0.3.1 • Published 7 years ago

@cryptographix/sim-core v0.3.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

sim-core

Simulation framework for Smart and Secure Process Networks, in TypeScript

Dependencies

aurelia-dependency-injection aurelia-event-emittor systemjs (for building and testing)

Used By

Platform Support

This library can be used in the browser as well as on the server.

Building The Code

To build the code, follow these steps.

  1. Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
  2. From the project folder, execute the following command:

    npm install
  3. Ensure that Gulp is installed. If you need to install it, use the following command:

    npm install -g gulp
  4. You make need to install and configure jspm beforehand, this obtains the typescript defn files needed to build successfully

    npm install -g jspm-cli
    jspm install -y
  5. To build the code, you can now run:

    gulp build
  6. You will find the compiled code in the dist folder, available in three module formats: AMD, CommonJS and ES6.

  7. To run the tests, you can simply run:

    gulp test-node