July 2012
0 posts
4 tags
Nodester CLI Reaches 1.0 Status!
We are happy to announce that the Nodester CLI (command line interface) has officially reached 1.0 status! At the time of this article, we are actually on v1.0.2 which now supports Node.JS version 0.8.1 by default!
Here is a list of the updates:
nodester app delete -> nodester app destroy (Because delete is reserved word in js) Almost every delete action is now destroy.
nodester app list:...
3 tags
Nodester Running Node.JS 0.8.1
3-2-1 BLAST OFF! Nodester now runs Node.JS version 0.8.1 by default if you upgrade to our latest CLI v1.0.2! You can upgrade from 0.4.12 or 0.6.17 to 0.8.1 by simply opening your package.json file and changing the following entry to:
“node”:”0.8.1”
Commit your change to git and push it to nodester:
git commit -am “upgrading to v0.8.1”
git push
Hack the planet! Thanks again to...
June 2012
3 posts
3 tags
Nodester Runs CoffeeScript!
Thanks to @_AlejandroMG and Jeremy Zevin, Nodester now runs CoffeeScript apps right out-of-the-box ( for files ending in .coffee)! Here’s a step-by-step example of how to get started with running your existing CoffeeScript application on Nodester.
Let’s start with the following hello world app written in CoffeeScript. Let’s save it to server.coffee
http = require 'http' ...