Re: [nodejs] Xcode and Node.js

2012-12-21 Thread Ryan Schmidt
On Dec 20, 2012, at 23:49, Forrest L Norvell wrote: Ultimately the distinction between compiled and interpreted is becoming as vague as the distinction between dynamic and static type systems, but it's simply not true to say that modern JS runtimes are 100% interpreted. Let's stay on topic

Re: [nodejs] Xcode and Node.js

2012-12-21 Thread Rodrigo Fonseca
I know, javascript is interpreted, that´s why i want to know how use node with xcode... I try to google it, but they always tell how to install, but never why i should to that. Em quinta-feira, 20 de dezembro de 2012 20h06min31s UTC-3, ryandesign escreveu: On Dec 20, 2012, at 08:54,

Re: [nodejs] Xcode and Node.js

2012-12-20 Thread Ryan Schmidt
On Dec 19, 2012, at 12:23, Rodrigo Fonseca fonsecaa...@gmail.com wrote: This didn´t get inside of my mind... How Node and Xcode work together??? I just google it and nothing explained that... I can use Xcode to write javascript?? Xcode has a built-in text editor, so sure, you can use

Re: [nodejs] Xcode and Node.js

2012-12-20 Thread Rodrigo Fonseca
I'm using Text Mate, i try to use netbeans, but the files that end with: html.ejs were deconfigured, so i'm using text mate. So Xcode compile the node?? What this means?? That i don't need to use the Terminal to simulate a server? -- Job Board: http://jobs.nodejs.org/ Posting guidelines:

Re: [nodejs] Xcode and Node.js

2012-12-20 Thread Ryan Schmidt
On Dec 20, 2012, at 08:54, Rodrigo Fonseca wrote: I'm using Text Mate, i try to use netbeans, but the files that end with: html.ejs were deconfigured, so i'm using text mate. So Xcode compile the node?? What this means?? That i don't need to use the Terminal to simulate a server?

Re: [nodejs] Xcode and Node.js

2012-12-20 Thread Dan Milon
Offtopic: On 12/21/2012 01:06 AM, Ryan Schmidt wrote: JavaScript is interpreted, not compiled. That's not true. The language by itself does not require the VM to either interpret or compile the code. V8 in fact does compile the code into an intermediate format called Hydrogen. (not assembly).

Re: [nodejs] Xcode and Node.js

2012-12-20 Thread Arunoda Susiripala
Hi, some corrections :) JavaScript is aa intepreted 100%. do you compile it before it getting runs? Yes it does compiling (optimisation on the v8) but that does not imply JavaScript as a compiled language. On Fri, Dec 21, 2012 at 4:53 AM, Dan Milon danmi...@gmail.com wrote: Offtopic: On

Re: [nodejs] Xcode and Node.js

2012-12-20 Thread Forrest L Norvell
On Thu, Dec 20, 2012 at 7:18 PM, Arunoda Susiripala arunoda.susirip...@gmail.com wrote: Hi, some corrections :) JavaScript is aa intepreted 100%. do you compile it before it getting runs? Yes it does compiling (optimisation on the v8) but that does not imply JavaScript as a compiled

Re: [nodejs] Xcode and Node.js

2012-12-19 Thread Louis Santillan
This link may help. Specific to gcc but it gives you the idea... http://hamelot.co.uk/programming/add-custom-compiler-to-xcode/ -L On Wed, Dec 19, 2012 at 10:23 AM, Rodrigo Fonseca fonsecaa...@gmail.comwrote: This didn´t get inside of my mind... How Node and Xcode work together??? I just