I have an existing project built using angular that I am trying to push into githubs remote server. I am able to push all the folders besides the node_modules folder which is quite big and contains hundreds of files. I read that it is bad practice to include this in the repo and it is also ignored by github, as specified in the .gitignore file.
I need the node_modules folder else the project wont run. getting an error that it is missing modules. What is the solution for this?
I need to share the project with someone and without this folder, it simply wont work.
Thank you in advance