“Inicialize o NPM” Respostas de código

NPM Init padrão

npm config ls -l	# List some default settings

npm config set <key> <value> -g	# Set default value for a key
npm config set init-author-name "John Doe" -g	# Set default author
npm config set init-version "1.0.0" -g	# Set default version
npm config set init-license "MIT" -g	# Set default license

npm config get <key>	# Get default value for a key

npm init -y	# Create package.json with default settings
garzj

Inicialize o NPM

$ npm init
  ...
  package name: @airnovaet.com/hello-world
  ...
  test command: exit 0
  ...    
Anxious Ant

Respostas semelhantes a “Inicialize o NPM”

Perguntas semelhantes a “Inicialize o NPM”

Mais respostas relacionadas para “Inicialize o NPM” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código