If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "you@example.com"
npm set init.author.url "http://yourblog.com"
npm adduser
| [ | |
| { | |
| "city": "New York", | |
| "growth_from_2000_to_2013": "4.8%", | |
| "latitude": 40.7127837, | |
| "longitude": -74.0059413, | |
| "population": "8405837", | |
| "rank": "1", | |
| "state": "New York" | |
| }, |
| the best way (I've found) to completely uninstall node + npm is to do the following: | |
| go to /usr/local/lib and delete any node and node_modules | |
| go to /usr/local/include and delete any node and node_modules directory | |
| if you installed with brew install node, then run brew uninstall node in your terminal | |
| check your Home directory for any local or lib or include folders, and delete any node or node_modules from there | |
| go to /usr/local/bin and delete any node executable | |
| You may need to do the additional instructions as well: | |
| sudo rm /usr/local/bin/npm |
CMD 0 100%CMD 1 Entire projectCMD 2 Zoom to selected objectCMD ALT 1 Hide left sidebarCMD ALT 2 Hide right ridebarCMD ALT 3 Hide bothCMD . Presentation modeCTRL R Ruler| /** | |
| * Description of this function. | |
| * | |
| * @param {string} name | |
| * @param {Date} birthday | |
| * @param {boolean=} isMarried Optional parameter. | |
| * @param {string|null} [bloodType] | |
| * @param {number=} [weight=0] Optional parameter with default value. | |
| * @param {string[]} favoriteFoods Array of String. | |
| * |