How to rename nodejs project?

Viewed 20945

Whenever I start my nodejs project, it refers to itself by the old name I gave it:

gpio-editor@0.0.0 start /home/pi/RPi-Computer-Power/RPi-Server

I do not want it to be called gpio-editor anymore, but I have not found a way to change it on the interwebs. I am pretty new to nodejs, and I didn't originally make this project.

If someone knows how to do this, please let me know. Thanks, Neil

3 Answers

if you're copying files from an existing project and still having issues after updating the name attribute in package.json, try removing node_modules dir and package-lock.json file (backup if needed) and run npm i or yarn.

Related