stephenlb / nodejuice

Automatic browser refresh on file change or update is what you can call it. NodeJuice is a set of tools which allows you to develop with a push connection to your web browser. JavaScript V8 Seeker Server and Web Server Gateway Interface. nodeJuice Seeker Server works with all other servers including Apache, Passenger, Nginx, Cherokee, and more. A web server isn't required, NodeJuice comes with one in case you forgot yours. It runs on NodeJS; a low level non-blocking network ready process with many capabilities. This is a tool that every web developer needs and has wanted for a very long time. IRC @ #node.js
http://nodejuice.com
Other
78 stars 3 forks source link

ARGV => argv #5

Closed suzuryo closed 12 years ago

suzuryo commented 12 years ago
- ,   appdir   = process.ARGV[2]
- ,   njdir    = process.ARGV[3]
- ,   njconfig = process.ARGV[4]
- ,   devmode  = process.ARGV[5]
+ ,   appdir   = process.argv[2]
+ ,   njdir    = process.argv[3]
+ ,   njconfig = process.argv[4]
+ ,   devmode  = process.argv[5]

node.js (v0.6.10)

stephenlb commented 12 years ago

Hi! Thank you for reporting this. Updating shortly...

stephenlb commented 12 years ago

Patch Applied! - https://github.com/stephenlb/nodejuice/commit/03e22bda080f71227b644e34e7fbddfe3f9f7b50

stephenlb commented 12 years ago

I use NodeJuice a lot while working at http://www.pubnub.com/

suzuryo commented 12 years ago

Thank you.