A logic based reactive JavaScript library that binds your application together.
Coming soon.
Setting up Cement on your local machine is easy. There's two folders to look out for. The lib
folder contains the framework code that compliles into dist
. The dist
folder is what you would use in your node_modules folder.
The debug
folder is its own project running within Cement to test the framework. Here's a quick guide on how to set it up.
-
First of all we need all our dependencies installed. Run
npm install
in both the root directory and in thedebug
folder. -
To compile our
lib
folder intodist
with our config file we have to runrollup -c
in the root directory. -
Now let's create a node_module link for Cement. Go to the root folder and run
npm link
, then head to thedist
folder and runnpm link cement
. This creates a cement folder in your node_modules folder. -
Lastly go to your
debug
folder and run this command to start the test projectnpm start
Woila! Project should now be running on http://localhost:8080/
.