Re: [nodejs] Manually install module that isn't in NPM

2012-12-31 Thread Nuno Job
Cool, for something like that you can do: ``` # clone git clone ... cd socketio # get whatever tag your interested in git checkout v1.0.0 npm link ``` On the other folder where you need to try it out: ``` npm link socket.io ``` Done :) Nuno -- Job Board: http://jobs.nodejs.org/ Posting guide

Re: [nodejs] Manually install module that isn't in NPM

2012-12-31 Thread Kamil Krzyszczuk
Just for test how it work right now. 2012/12/31 Nuno Job > Have you considered why the repo is not on npm yet? > > The author choose not to publish it yet, I would advise you to to reach > out and ask why at least before using in production. > > I think the appropriate workflow would be somethi

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Nuno Job
Have you considered why the repo is not on npm yet? The author choose not to publish it yet, I would advise you to to reach out and ask why at least before using in production. I think the appropriate workflow would be something like: * If you are a developer of socket.io you already use and kno

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Kamil Krzyszczuk
worked, big thanks :) -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to nodejs@googlegroups.c

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Kamil Krzyszczuk
worked, big thanks :) 2012/12/30 José F. Romaniello > I told you: npm install git repository#branch > > but you didnt put the branch name :) > > > 2012/12/30 Kamil Krzyszczuk > >> Sry for my missunderstanding :) didn't know that there is official >> registry and options for others. So i tried

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread José F . Romaniello
I told you: npm install git repository#branch but you didnt put the branch name :) 2012/12/30 Kamil Krzyszczuk > Sry for my missunderstanding :) didn't know that there is official > registry and options for others. So i tried it: > > npm install git://github.com/LearnBoost/socket.io.git > > bu

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Martin Cooper
On Sun, Dec 30, 2012 at 9:31 AM, Kamil Krzyszczuk wrote: > Sry for my missunderstanding :) didn't know that there is official > registry and options for others. So i tried it: > > npm install git://github.com/LearnBoost/socket.io.git > > but this installed just a 0.9.11 version. Maybe I copied wr

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Kamil Krzyszczuk
Sry for my missunderstanding :) didn't know that there is official registry and options for others. So i tried it: npm install git://github.com/LearnBoost/socket.io.git but this installed just a 0.9.11 version. Maybe I copied wrong link, this is 1.0 branch: https://github.com/LearnBoost/socket.io

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Martin Cooper
On Sun, Dec 30, 2012 at 8:55 AM, Kamil Krzyszczuk wrote: > Nuno, read posts. Socket.io 1.0 isn't present in NPM yet. > As I said in my previous post, you can use npm to install it from the tarball. That is, "use npm", as Nuno said, or "npm install gitrepostiroy#branch", as Jose said, are *not* t

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Kamil Krzyszczuk
there isn't socket.io 1.0 in npm.. even npm install socket.io@1.0 or npm install socket.io#1.0 says same, there is not 1.0, latest one is 0.9.13. 2012/12/30 José F. Romaniello > npm install gitrepostiroy#branch > > > 2012/12/30 Kamil Krzyszczuk > >> Nuno, read posts. Socket.io 1.0 isn't presen

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread José F . Romaniello
npm install gitrepostiroy#branch 2012/12/30 Kamil Krzyszczuk > Nuno, read posts. Socket.io 1.0 isn't present in NPM yet. > > > 2012/12/30 Nuno Job > >> Use npm. >> >> Nuno >> >> Sent from my iPhone >> >> On Dec 30, 2012, at 4:13 PM, hashi101 wrote: >> >> I try to install Socket.io 1.0,so I do

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Kamil Krzyszczuk
Nuno, read posts. Socket.io 1.0 isn't present in NPM yet. 2012/12/30 Nuno Job > Use npm. > > Nuno > > Sent from my iPhone > > On Dec 30, 2012, at 4:13 PM, hashi101 wrote: > > I try to install Socket.io 1.0,so I downloaded socket.io-1.0 and > socket.io-client-1.0 packages. And put it in node_mo

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Nuno Job
Use npm. Nuno Sent from my iPhone On Dec 30, 2012, at 4:13 PM, hashi101 wrote: > I try to install Socket.io 1.0,so I downloaded socket.io-1.0 and > socket.io-client-1.0 packages. And put it in node_modules folder. Changed > "socket.io-client" to "socket.io.client-1.0" in some files, because

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Kamil Krzyszczuk
Martin, i can't install socket.io 1.0 from NPM because socket.io 1.0 isn't there yet :) the latest version in NPM is 0.9.13 2012/12/30 Martin Cooper > > > On Sun, Dec 30, 2012 at 8:13 AM, hashi101 wrote: > >> I try to install Socket.io 1.0,so I downloaded socket.io-1.0 and >> socket.io-client-1

Re: [nodejs] Manually install module that isn't in NPM

2012-12-30 Thread Martin Cooper
On Sun, Dec 30, 2012 at 8:13 AM, hashi101 wrote: > I try to install Socket.io 1.0,so I downloaded socket.io-1.0 and > socket.io-client-1.0 packages. And put it in node_modules folder. What's the reason you're not just using npm to install this? It sounds like you are downloading the tarballs m

[nodejs] Manually install module that isn't in NPM

2012-12-30 Thread hashi101
I try to install Socket.io 1.0,so I downloaded socket.io-1.0 and socket.io-client-1.0 packages. And put it in node_modules folder. Changed "socket.io-client" to "socket.io.client-1.0" in some files, because they except the first name. And then I run sample application: var io = require('socket.