Note that this code has not been updated to reflect the most recent changes in MontageJS. Although you will be able to run the application, it may not look or behave as intended.
This application is an example of how a Montage application can be structured and implemented.
##Installation
This application depends on the Montage framework which isn't included in the repository. To run the Calculator demo locally, you must have Node.js and npm installed. MontageJS application development depends on npm, the Node package manager, which is distributed with Node.js. If you haven't done so already, be sure to download and run the prebuilt Node.js installer for your platform from the Node.js website. Then follow these steps:
-
Clone the calculator GitHub repo in your desktop.
-
Use your command line tool to navigate to the cloned directory and install the modules required to run the demo:
cd calculator npm update
-
Spin up your preferred HTTP server and point your browser to the associated port.
During development MontageJS applications rely on XHR to load their various components and modules, which is why you will need a web server to serve the demo.
If you happen to have minit, the Montage Initializer, installed (
npm install minit -g
) you can runminit serve
from within the demo directory to set up a server on demand.
Got questions? Join us on irc.freenode.net#montage.
Got feedback or want to report a bug? Let us know by creating a new GitHub issue.
This demo application was created by MontageJS.