Welcome to mirror list, hosted at ThFree Co, Russian Federation.

npm-build.md « cli-commands « content « docs - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eca5397d9c77d51e67255f600319881aa063f595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
section: cli-commands 
title: npm-build
description: Build a package
---

# npm-build(1)

## Build a package

### Synopsis
```shell
npm build [<package-folder>]
```

* `<package-folder>`:
  A folder containing a `package.json` file in its root.

### Description

This is the plumbing command called by `npm link` and `npm install`.

It should generally be called during installation, but if you need to run it
directly, run:
```bash
    npm run-script build
```

### See Also

* [npm install](/cli-commands/install)
* [npm link](/cli-commands/link)
* [npm scripts](/using-npm/scripts)
* [package.json](/configuring-npm/package-json)