cli icon indicating copy to clipboard operation
cli copied to clipboard

[BUG] Cannot work on FAT32 USB drive

Open szatanjl opened this issue 2 years ago • 2 comments

Is there an existing issue for this?

  • [x] I have searched the existing issues

This issue exists in the latest npm version

  • [X] I am using the latest npm

Current Behavior

I have started a react-native project. But instead of keeping files on hard drive I wanted to keep everything on a USB drive. I have formated it to FAT32. And so problem starts.

npm install by default creates symlinks to binaries in node_modules/.bin/, but FAT32 does not support symlinks. So running npm install fails. Searching/googling around the internet the only thing I have found is to add --no-bin-links argument. Unfortunatelly that does not solve anything. Yes npm install works, but everything after that fails. Running npx react-native for example ends with error that command cannot be found. Which is to be expected - there is no node_modules/.bin/ because of --no-bin-links.

I decided to look around the code of npm for solutions. I have found that there is a special case made for Windows to create shims (shell, powershell, cmd files) instead of symlinks (look node_modules/bin-links/lib/link-bins.js line 4. And also I found that I can cheat this isWindows check using env variable __TESTING_BIN_LINKS_PLATFORM__ (look node_modules/bin-links/lib line 1).

And so for now I have added export __TESTING_BIN_LINKS_PLATFORM__=win32 to my env and this way I have tricked npm into creating shell scripts instead of symlinks, and it works perfectly. I can npm install onto FAT32 USB drive. I can run npx <commands> no problem.

But that is a hack/workaround, not a proper solution.

Expected Behavior

I would suggest to add new argument to npm install command. Something along the lines --prefer-bin-shims that would then make npm create shell scripts instead of symlinks on Linux systems. The code for making those shell scripts is already there, and it works perfectly on my setup. The only thing missing is a command line option.

Steps To Reproduce

  1. Format USB drive to FAT32
  2. Copy some react-native project into USB drive
  3. Run npm install
  4. Fail... Cannot create symlinks
  5. Run npm install --no-bin-links
  6. Success, but...
  7. Run npx react-native
  8. Fail... Command not found

Environment

  • npm: 8.5.4
  • Node.js: 17.7.1
  • OS Name: Arch Linux
  • System Model Name: -
  • npm config:
; "user" config from /home/szatan/.npmrc

cache = "/tmp/szatan/npm"
prefix = "/tmp/szatan/.npm"

; node bin location = /usr/bin/node
; cwd = /home/szatan
; HOME = /home/szatan
; Run `npm config ls -l` to show all defaults.

szatanjl avatar Mar 12 '22 14:03 szatanjl

Hey, I have an external FAT32 HDD drive on my Ubuntu, and I have some similar problems. Npm install not work on FAT32 At first I find that npm install $Something --no-bin-links did work, but it seem to be kinda easy to forget. And then I try to see if some sort of option of no-bin-links exist, so I type npm config ls -l Then the option bin-links = true appear in the list, so I should just set it to false to test. Now type npm config set bin-links false And now npm Install in my external hard drive FAT32 work, but I'm still a novice so it would be nice if someone tell me if there is some source of consequences. But for now it work.

And before that I did set the globalconfig to "media/$MY_NAME/$HDD_Drive_name" , but i'm not sure if that is really neccessary, just document the stuff I did.

dreemurgithub avatar Feb 03 '24 13:02 dreemurgithub

I also faced the same issue on exFAT SSD. Is there any solution for this?

GirishBhutiya avatar Apr 13 '24 14:04 GirishBhutiya