./configure --prefix=$HOME/node
> --
> You received this message because you are subscribed to the Google Groups "nodejs" group.
> To post to this group, send email to nod...@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+un...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
>
Nope, variables are replaced by the shell /before/ running the command:
$ echo $USER
mishoo
$ sudo echo $USER
mishoo
$ sudo bash
# echo $USER
root
Cheers,
-M.
"Installing WITHOUT sudo"
I think that rules out any solution using "sudo". ;)
I was just poking fun as Isaac for misreading the problem.
I like to consider /usr/local as "mine", and /usr as "system". Since
my machines are all mostly single-user, it works out.
--i
installed and runs...now have to figure out how to get my shared host
to let me respond on port 80 so that when you visit my URL you hit my
node app and not their apache stuff.
Not going to happen unless you are allowed to edit the apache config such that apache acts as a reverse proxy to a node instance running on another port.
--i