On Tuesday, September 24, 2013 7:00:38 PM UTC-4, [email protected] wrote: > > I have Ubuntu 13 and a beaglebone black. The ubuntu is from the > beaglebone image section which I flashed onto the bone. > > uname: Linux arm 3.8.13-bone21 #1 SMP Fri Jun 14 03:10:29 UTC 2013 > armv7l armv7l armv7l GNU/Linux > > I compiled nodejs from source and it's version 0.10.18. > > node -v : v0.10.18 > > I'm having a big problem installing bonescript. When I run "sudo node > install -g bonescript" I get the following: > > ubuntu@arm:~$ sudo npm install -g bonescript > [sudo] password for ubuntu: > npm http GET https://registry.npmjs.org/bonescript > npm http 304 https://registry.npmjs.org/bonescript >
Your getting a 304 error, so the problem is in trying to download bonescript from npmjs.org When I just tried going to https://registry.npmjs.org/bonescript in my browser, Chrome complained about the certificate for that website, so my guess would be that npm defaults to some strict certificate checking. Try installing from http://registr.npmjs.org/bonescript instead -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" 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.
