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 installin both the root directory and in thedebugfolder. -
To compile our
libfolder intodistwith our config file we have to runrollup -cin 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 thedistfolder and runnpm link cement. This creates a cement folder in your node_modules folder. -
Lastly go to your
debugfolder and run this command to start the test projectnpm start
Woila! Project should now be running on http://localhost:8080/.