I cant install modules, i tried everything

Hello, i’ve created a website with ejs everything ok BUT modules aren’t installing, what i can do?

look;

Check Glitch Status

@xyligan , is that so? Ok…

Glitch is not in good shape right now. I personally put the package yesterday for 30 minutes.

@kyoyawashere As the error says, you have ran out of space on your project to add anything else. This is not due to the current API errors. You can email support@glitch.com to ask them for a tad more space so you can get rid of some files, if you can really not do anything

2 Likes

@EddiesTech Really…

Glitch gives you 1GB of dedicated space for node modules. It appears you have reached that limit.

You will need to assess which packages you need and delete any unwanted dependencies or packages

1 Like

@random same. …,…

One thing you could do is delete your node_modules folder and reinstall the modules manually with the npm install command

A bit dangerous but should work

EDIT- FOLDER IS REGENERATED ON INSTALLATION SO IT IS SAFE

someone help please…

Try this ^^^^^^^^^^^^

FYI:

rm -rf node_modules
npm install

@random not worked :(:::::

Okay, maybe @khalby786 knows? He is a node and npm user

@random I remixed the project and fixed but domain still at old project xd.

Lol, custom domain?

Yes, custom domain…

Oh, right then…

  • remove your old project CNAME or any record pointing to it
  • email support@glitch.com to remove the domain
1 Like

@17lwinnNo problem i will use tk domain instead of “ml” :slight_smile:

1 Like

@kyoyawashere, what @random said should actually work.

  1. Open the terminal by clicking on Tools in the left bottom corner of the editor.
  2. Click on Terminal.
  3. Then type rm -rf node_modules and press Enter.
  4. Then type npm install (or npm rebuild might also work) and then press Enter.
2 Likes