Lines Matching full:install
4 description: Install a project with a clean slate
9 ## Install a project with a clean slate
18 Make sure you have a package-lock and an up-to-date install:
22 $ npm install
34 Configure Travis to build using `npm ci` instead of `npm install`:
38 install:
48 This command is similar to [`npm install`](/cli-commands/npm-install), except it's meant to be used…
51 install of your dependencies. It can be significantly faster than a regular npm
52 install by skipping certain user-oriented features. It is also more strict than
53 a regular install, which can help catch errors or inconsistencies caused by the
56 In short, the main differences between using `npm install` and `npm ci` are:
60 * `npm ci` can only install entire projects at a time: individual dependencies cannot be added with…
61 …e_modules` is already present, it will be automatically removed before `npm ci` begins its install.
66 * [npm install](/cli-commands/npm-install)