wynd — 9/17/2023, 2:54:29 PM

im trying to move 400k files from my Code folder on my C: drive to my code folder on my E: drive…

gosh darn node_modules

♥ 7 ↩ 0 💬 6 comments

comments

illogicalapple:

delete all your modules and reinstall all dependencies you actually use

9/17/2023, 6:43:44 PM
wynd:

i had to delete all folders called node_modules then do that yeah. took a long time

9/17/2023, 7:37:52 PM
flux:

i’m no expert, but does node_modules just download to the directory that the npm install command was run inside of?

so something like:

~$ cd project
/project/~$ npm install express

would be different from just installing it like

~$ cd
~$ npm install express

if that’s not the case, you should probably just install everything in your home folder or something

i honestly hate the node_modules folder lol

9/18/2023, 2:48:20 AM
wynd:

yes i was going to do that but then vite doesn’t like that for some reason

9/18/2023, 1:53:17 PM
flux:

yeah, most templates like vue starters or nuxt starters are kinda goofy like that

9/18/2023, 2:32:36 PM
asfsdgdfd:

i feel this

9/17/2023, 3:55:13 PM