Node.js for Server Noobs

  • 19 people upvoted this? Did you even check? It has 0 content.

    The 'meat' of the "article" is

      webby# curl -O http://nodejs.org/dist/node-v0.2.0.tar.gz
      webby# tar xvzf node-v0.2.0.tar.gz
      webby# cd node-v0.2.0
      webby# ./configure
      webby# make
      webby# make install
    
    Which I think most people who can read docs can work out.

  • FYI apt-get update does not update any packages. It just downloads the current list of packages and their versions from the repository.

  • btw, it is time to put the support for clang++ in V8's scons build system. It is not obvious what file should I modify. In the case of a traditional make I just redefine one environment variable before doing ./configure or modify one variable in a Makefile (clang is compatible with gcc's command line arguments).

  • Anyone have any info on using Node.js server code to talk to SOAP services?

  • ytuytyotiu im