I am trying to use NPM on cygwin, but keep getting following errors:

ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" tar: Unexpected EOF in archive
ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" tar: Unexpected EOF in archive
ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" tar: Error is not recoverable: exiting now
ERR! tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm" 
ERR! Failed unpacking /tmp/npm-1305893882865/1305893885765-0.008730818051844835/tmp.tgz
ERR! couldn't unpack /tmp/npm-1305893882865/1305893885765-0.008730818051844835/tmp.tgz to /tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents
verbose about to build /home/Tema/node_modules/express
ERR! error installing express@2.3.5 Error: Failed tar "-mvxpf" "-" "--no-same-owner" "-C" "/tmp/npm-1305893882865/1305893885765-0.008730818051844835/contents/___package.npm"

There are couple advices I googled (npm cache clean and rebaseall), but nothing helped. So, is there any way to use NPM in Cygwin?

link|improve this question

60% accept rate
me too! i got a similar error as above and did an npm cache clean and also a rebaseall and now npm install express seems to hang with gzip consuming 100% cpu? – molicule May 21 '11 at 3:42
hmm, no, it shows the errors above and exits with "npm not ok". looks like we need to switch to linux vm... – spacevillain May 21 '11 at 8:04
It might be worth asking about this in #nodejs, if you haven't already. – Thom Blake Jun 3 '11 at 12:55
feedback

6 Answers

I have the same issue myself very often.

I don't know how to fix it, however I do know that the error happens irregularly. If you try to install the npm package again, it may work. Just keep retrying and it will work eventually.

When it gets stuck at 100% cpu, just cancel it (ctrl+c) and try again. Also, don't switch to another window while you are installing a package.

You can also just manually install the package with wget and tar inside the node_modules folder.

link|improve this answer
It worked on the third time for me. – Shagglez Aug 17 '11 at 11:18
feedback

Try to remove temp files with this command:

$ rm /tmp/npm-*

then install again. worked for me.

link|improve this answer
feedback

small patch for /usr/local/lib/node_modules/npm/lib/utils/tar.js

--- tar.js.old 2011-07-15 15:23:09.205440100 +0700
+++ tar.js 2011-07-15 15:25:58.327113300 +0700
@@ -20,6 +20,7 @@
, relativize = require("./relativize")
, cache = require("../cache")
, excludes = require("./excludes")
+ , child_process = require("child_process");

exports.pack = pack
exports.unpack = unpack
@@ -168,13 +169,17 @@
//console.error(npm.config.get("gzipbin")+" --decompress --stdout "
// +tarball+" | "+npm.config.get("tar")+" -mvxpf - -o -C "
// +tmp)
- pipe( spawn( npm.config.get("gzipbin")
- , ["--decompress", "--stdout", tarball]
- , process.env, false )
- , spawn( npm.config.get("tar")
- , ["-mvxpf", "-", "-o", "-C", tmp]
- , process.env, false )
- , function (er) {
+ // pipe( spawn( npm.config.get("gzipbin")
+ // , ["--decompress", "--stdout", tarball]
+ // , process.env, false )
+ // , spawn( npm.config.get("tar")
+ // , ["-mvxpf", "-", "-o", "-C", tmp]
+ // , process.env, false )
+ // , function (er) {
+
+ child_process.exec(npm.config.get("gzipbin")+" --decompress --stdout "
+ +tarball+" | "+npm.config.get("tar")+" -mvxpf - --no-same-owner -C " +tmp
+ , function (er, stdout, stderr) {
// if we're not doing ownership management,
// then we're done now.
if (er) return log.er(cb,
link|improve this answer
I tried this patch, and it does NOT work (node 0.4.11, npm 1.0.27, Cygwin/WinXP). The error was: npm ERR! couldn't unpack /tmp/npm-1314406924278/1314406936833-0.9859440890140831/tmp.tgz to /tmp/npm-1314406924278/1314406936833-0.9859440890140831/contents npm ERR! Error: EACCES, Permission denied '/tmp/npm-1314406924278/1314406936833-0.9859440890140831/contents/___package.npm/p‌​ackage'. I have set unsafe-perm and made sure directories have required permissions, any other ideas? (I tried all the suggestions listed in this question) – Amro Aug 27 '11 at 1:12
I have the same problem. – Daniel Flores Aug 27 '11 at 21:02
feedback
  1. Blow the tmp directory away

    rm -R /tmp/*
    
  2. Clear npm's cache

    npm cache clean
    
  3. Exit out of your current shell and start a ash or dash shell up (from in cygwin/bin)

  4. In the ash (or dash) shell execute the rebaseall command.

    /bin/rebaseall -v
    
  5. Exit out and restart a new bash shell.

  6. Try your npm command again.

    npm install <package>
    
link|improve this answer
Does not work for me:( – TN. Sep 5 '11 at 20:03
feedback

If it happen, try to delete partially extracted modules from .npm directory (might be located in home directory: ~/.npm) and try again (twice or more).

link|improve this answer
feedback

Replace the respective functions in /lib/node_modules/npm/lib/utils/tar.js with functions from http://pastebin.com/Ck4Dptgi

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.