npmrc file in npm

  • It is a rc configuration file which is stored in users directory
  • We can execute npm config command to set the values in this file
  • Location of npmrc file “~/.npmrc”
npm config set init.author.name Tyson
npm config set init.author.email gill.tyson332@gmail.com

Sample .npmrc file

init.author.name=Tyson
init.author.email=gill.tyson332@gmail.com

Leave a Comment