On Mar 14, 6:24 am, "Bhushan N.N" <[email protected]> wrote: > I am trying to install socket.io and I get this message > > npm install socket.io > > <https://lh5.googleusercontent.com/-EMb8MP8FLgU/UUGlU_kIskI/AAAAAAAABh...>
`npm install socket.io` should skip compilation for the ws module if you do not have a suitable compiler installed and will fall back to a pure javascript solution. Looking at the screenshot you're not executing `npm install socket.io`, but are explicitly trying to compile the ws module. So if you do not have Visual Studio 2008/2010/2012 (Express) installed, you won't be able to succeed. -- -- 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
