1.0.26 • Published 6 years ago

cscript v1.0.26

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

Consistency Script

Consistency script (CS) is a DSL targeting the development of IoT applications. It is as superset of Javascript, containing built-in constructs for data replication and consistency.

A CS application is a collection of services, where a service is a container for distributed data and operations on that data. Programmers are provided with language constructs for various consistency models, including strong consistency and strong eventual consistency (SEC).

For a complete tutorial on ConsistencyScript please visit our wiki.

Installation

Consistency Script is a Node.js module available through the npm registry. Node.js is required in order to install Consistency Script. Install Consistency Script using the npm install command:

$ npm install cscript

How To Run

Since ConsistencyScript is a DSL built on top of javascript, one first needs to compile his application to javascript before it can be ran. ConsistencyScript files must use the .cs extension and can be compiled using the following command:

# Compile project
$ "$(npm bin)"/csc "$PWD" <main_file> <out_directory>
# e.g : "$(npm bin)"/csc "$PWD" ./Examples/cs/distributedDNS/distributedDNS.cs ./Examples/cs/distributedDNS/compiled

# Run project
node ./compiled/<main_file>

The above csc command compiles the main file as well as all CS files in the same directory and any of its subdirectories. After the compilation we run the project as a regular Node.js project.

1.0.26

6 years ago

1.0.25

6 years ago

1.0.24

6 years ago

1.0.23

6 years ago

1.0.22

6 years ago

1.0.21

6 years ago

1.0.20

6 years ago

1.0.19

6 years ago

1.0.18

6 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago