ELIFECYCLE upon NPM Start - KSU-CS-Software-Engineering/HSPC GitHub Wiki
When attempting to start the program, ELIFECYCLE errors are common. These are usually associated with dependencies when building a project.
One possible solution is to remove the node_modules folder from the local directory, then do an npm install
.
When removing node_modules, it may give some errors about permissions. To forcibly remove this folder, user the command:
rm -rf node_modules
.
This will recursively destroy a folder and any of its contents and sub-folders.