Sometimes it's hard to know, because the city limits have the complexity of a fractal curve.
More info at Code for America.
‘Am I In Las Vegas’ (AIILV) is a Node application written in Javascript.
On a plain Ubuntu system, install the nodejs
and npm
packages.
apt-get install -y nodejs npm
Install the additional Node express
module:
npm install express
npm install express
npm install
npm install -g gulp
(May need sudo for this)To run AIILV:
node server.js
In order to build the assets, you need to install gulp (npm install -g gulp).
You are of course free to use the locally installed gulp node module if you prefer. node node_modules/gulp/bin/gulp.js
If you only want to run the SVG compiler and js compile, simply run gulp.
The default task will do a once-off compile and close.
The 'watch' task will monitor any js files for changes and re-run the browserify build automatically if any appropriate files are changed.
You may also use the "npm run-script make" and "npm run-script watch" commands to invoke gulp and gulp watch respectively.
Stylesheets are now auto-generated from source SCSS in the Express server via middleware.
On 3/12/15, "npm run-script watch" and "npm run-script test" failed due to a Browserify glitch.
Changing "watchify": "^2.4.0"
in package.json to "watchify": "0.8.1"
resolves the error, but potentially causes others. Proceed with caution.
Try these: