Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Sets default value for license property
npm config set init-license "MIT"  /  npm set init-license "MIT"
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
Shows the default value for author
npm config get init-author-name
We can omit
config
keyword
npm get init-author-name
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
get default license
Shows default value for license property
npm config get init-license  /  npm get init-license
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
Deletes manually set default author name (default author will become empty string)
npm config delete init-author-name
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
Deletes manually set default license (default license will become
ISC
)
npm config delete init-license
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
Installs package with
--save
flag as default (from npm version 5.*
--save
is default)
npm install moment
After installing the package, the following will be added to
pckage.json
file
"dependencies": {
    "moment": "^2.27.0"
  }
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
set
--save
default as
false
npm config set save=false  /  npm set save=false
by Valeri Tandilashvili
5 years ago
0
NPM
0
get --save flag default value
Shows
--save
flag default value
npm config get save  /  npm get save
by Valeri Tandilashvili
5 years ago
0
NPM
0
Installs all the packages listed in
dependencies
key inside
package.json
file
npm install
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
Default is
true
from NPM version 5.*
by Valeri Tandilashvili
5 years ago
0
NPM
NPM Crash Course
0
Results: 1578