From f937337d9f1095c3027c1a00348046761251af75 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Wed, 20 Feb 2013 22:49:15 -0500 Subject: [PATCH] Fix CoffeeScript Dependency packages.json did not include coffee-script. The dependency has been added and the README file updated to note the local method for starting the application. --- README.md | 6 ++++++ package.json | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ea5306f..a697dea 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,12 @@ $ cp config/database.coffee.sample database.coffee ##Usage +``` +$ ./node_modules/coffee-script/bin/coffee dbmonitor.coffee +``` + +or with global coffee-script install: + ``` $ coffee dbmonitor.coffee ``` diff --git a/package.json b/package.json index ad24cbe..bfc071c 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "dependencies": { "mysql-native": "0.4.x", "socket.io": "0.9.x", - "moment": "1.7.x" + "moment": "1.7.x", + "coffee-script": "1.3.x" } } \ No newline at end of file