1 ---
2 title: npm-init
3 section: 1
4 description: Create a package.json file
5 github_repo: npm/cli
6 github_branch: latest
7 github_path: docs/lib/content/commands/npm-init.md
8 redirect_from:
9 - /cli-commands/init
10 - /cli-commands/npm-init
11 - /cli-documentation/cli-commands/init
12 - /cli-documentation/cli-commands/npm-init
13 - /cli-documentation/commands/init
14 - /cli-documentation/commands/npm-init
15 - /cli-documentation/init
16 - /cli-documentation/npm-init
17 - /cli-documentation/v11/cli-commands/init
18 - /cli-documentation/v11/cli-commands/npm-init
19 - /cli-documentation/v11/commands/init
20 - /cli-documentation/v11/commands/npm-init
21 - /cli-documentation/v11/init
22 - /cli-documentation/v11/npm-init
23 - /cli/cli-commands/init
24 - /cli/cli-commands/npm-init
25 - /cli/commands/init
26 - /cli/commands/npm-init
27 - /cli/init
28 - /cli/npm-init
29 - /cli/v11/cli-commands/init
30 - /cli/v11/cli-commands/npm-init
31 - /cli/v11/commands/init
32 - /cli/v11/init
33 - /cli/v11/npm-init
34 - /commands/init
35 - /commands/npm-init
36 ---
37
38 ### Synopsis
39
40 ```bash
41 npm init <package-spec> (same as `npx create-<package-spec>`)
42 npm init <@scope> (same as `npx <@scope>/create`)
43
44 aliases: create, innit
45 ```
46
47 ### Description
48
49 `npm init <initializer>` can be used to set up a new or existing npm package.
50
51 `initializer` in this case is an npm package named `create-<initializer>`, which will be installed by [`npm-exec`](/cli/v11/commands/npm-exec), and then have its main bin executed -- presumably creating or updating `package.json` and running any other initialization-related operations.
52
53 The init command is transformed to a corresponding `npm exec` operation as follows:
54
55 - `npm init foo` -> `npm exec create-foo`
56 - `npm init @usr/foo` -> `npm exec @usr/create-foo`
57 - `npm init @usr` -> `npm exec @usr/create`
58 - `npm init @usr@2.0.0` -> `npm exec @usr/create@2.0.0`
59 - `npm init @usr/foo@2.0.0` -> `npm exec @usr/create-foo@2.0.0`
60
61 If the initializer is omitted (by just calling `npm init`), init will fall back to legacy init behavior. It will ask you a bunch of questions, and then write a package.json for you. It will attempt to make reasonable guesses based on existing fields, dependencies, and options selected. It is strictly additive, so it will keep any fields and values that were already set. You can also use `-y`/`--yes` to skip the questionnaire altogether. If you pass `--scope`, it will create a scoped package.
62
63 _Note:_ if a user already has the `create-<initializer>` package globally installed, that will be what `npm init` uses. If you want npm to use the latest version, or another specific version you must specify it:
64
65 - `npm init foo@latest` # fetches and runs the latest `create-foo` from the registry
66 - `npm init foo@1.2.3` # runs `create-foo@1.2.3` specifically
67
68 #### Forwarding additional options
69
70 Any additional options will be passed directly to the command, so `npm init foo -- --hello` will map to `npm exec -- create-foo --hello`.
71
72 To better illustrate how options are forwarded, here's a more evolved example showing options passed to both the **npm cli** and a create package, both following commands are equivalent:
73
74 - `npm init foo -y --registry=<url> -- --hello -a`
75 - `npm exec -y --registry=<url> -- create-foo --hello -a`
76
77 ### Examples
78
79 Create a new React-based project using [`create-react-app`](https://npm.im/create-react-app):
80
81 ```bash
82 $ npm init react-app ./my-react-app
83 ```
84
85 Create a new `esm`-compatible package using [`create-esm`](https://npm.im/create-esm):
86
87 ```bash
88 $ mkdir my-esm-lib && cd my-esm-lib
89 $ npm init esm --yes
90 ```
91
92 Generate a plain old package.json using legacy init:
93
94 ```bash
95 $ mkdir my-npm-pkg && cd my-npm-pkg
96 $ git init
97 $ npm init
98 ```
99
100 Generate it without having it ask any questions:
101
102 ```bash
103 $ npm init -y
104 ```
105
106 ### Workspaces support
107
108 It's possible to create a new workspace within your project by using the `workspace` config option. When using `npm init -w <dir>` the cli will create the folders and boilerplate expected while also adding a reference to your project `package.json` `"workspaces": []` property in order to make sure that new generated **workspace** is properly set up as such.
109
110 Given a project with no workspaces, e.g:
111
112 ```
113 .
114 +-- package.json
115 ```
116
117 You may generate a new workspace using the legacy init:
118
119 ```bash
120 $ npm init -w packages/a
121 ```
122
123 That will generate a new folder and `package.json` file, while also updating your top-level `package.json` to add the reference to this new workspace:
124
125 ```
126 .
127 +-- package.json
128 `-- packages
129 `-- a
130 `-- package.json
131 ```
132
133 The workspaces init also supports the `npm init <initializer> -w <dir>` syntax, following the same set of rules explained earlier in the initial **Description** section of this page. Similar to the previous example of creating a new React-based project using [`create-react-app`](https://npm.im/create-react-app), the following syntax will make sure to create the new react app as a nested **workspace** within your project and configure your `package.json` to recognize it as such:
134
135 ```bash
136 npm init -w packages/my-react-app react-app .
137 ```
138
139 This will make sure to generate your react app as expected, one important consideration to have in mind is that `npm exec` is going to be run in the context of the newly created folder for that workspace, and that's the reason why in this example the initializer uses the initializer name followed with a dot to represent the current directory in that context, e.g: `react-app .`:
140
141 ```
142 .
143 +-- package.json
144 `-- packages
145 +-- a
146 | `-- package.json
147 `-- my-react-app
148 +-- README
149 +-- package.json
150 `-- ...
151 ```
152
153 ### Configuration
154
155 #### `init-author-name`
156
157 - Default: ""
158 - Type: String
159
160 The value `npm init` should use by default for the package author's name.
161
162 #### `init-author-url`
163
164 - Default: ""
165 - Type: "" or URL
166
167 The value `npm init` should use by default for the package author's homepage.
168
169 #### `init-license`
170
171 - Default: "ISC"
172 - Type: String
173
174 The value `npm init` should use by default for the package license.
175
176 #### `init-module`
177
178 - Default: "~/.npm-init.js"
179 - Type: Path
180
181 A module that will be loaded by the `npm init` command. See the documentation for the [init-package-json](https://github.com/npm/init-package-json) module for more information, or [npm init](/cli/v11/commands/npm-init).
182
183 #### `init-type`
184
185 - Default: "commonjs"
186 - Type: String
187
188 The value that `npm init` should use by default for the package.json type field.
189
190 #### `init-version`
191
192 - Default: "1.0.0"
193 - Type: SemVer string
194
195 The value that `npm init` should use by default for the package version number, if not already set in package.json.
196
197 #### `yes`
198
199 - Default: null
200 - Type: null or Boolean
201
202 Automatically answer "yes" to any prompts that npm might print on the command line.
203
204 #### `force`
205
206 - Default: false
207 - Type: Boolean
208
209 Removes various protections against unfortunate side effects, common mistakes, unnecessary performance degradation, and malicious input.
210
211 - Allow clobbering non-npm files in global installs.
212 - Allow the `npm version` command to work on an unclean git repository.
213 - Allow deleting the cache folder with `npm cache clean`.
214 - Allow installing packages that have an `engines` declaration requiring a different version of npm.
215 - Allow installing packages that have an `engines` declaration requiring a different version of `node`, even if `--engine-strict` is enabled.
216 - Allow `npm audit fix` to install modules outside your stated dependency range (including SemVer-major changes).
217 - Allow unpublishing all versions of a published package.
218 - Allow conflicting peerDependencies to be installed in the root project.
219 - Implicitly set `--yes` during `npm init`.
220 - Allow clobbering existing values in `npm pkg`
221 - Allow unpublishing of entire packages (not just a single version).
222
223 If you don't have a clear idea of what you want to do, it is strongly recommended that you do not use this option!
224
225 #### `scope`
226
227 - Default: the scope of the current project, if any, or ""
228 - Type: String
229
230 Associate an operation with a scope for a scoped registry.
231
232 Useful when logging in to or out of a private registry:
233
234 ```
235 # log in, linking the scope to the custom registry
236 npm login --scope=@mycorp --registry=https://registry.mycorp.com
237
238 # log out, removing the link and the auth token
239 npm logout --scope=@mycorp
240 ```
241
242 This will cause `@mycorp` to be mapped to the registry for future installation of packages specified according to the pattern `@mycorp/package`.
243
244 This will also cause `npm init` to create a scoped package.
245
246 ```
247 # accept all defaults, and create a package named "@foo/whatever",
248 # instead of just named "whatever"
249 npm init --scope=@foo --yes
250 ```
251
252 #### `workspace`
253
254 - Default:
255 - Type: String (can be set multiple times)
256
257 Enable running a command in the context of the configured workspaces of the current project while filtering by running only the workspaces defined by this configuration option.
258
259 Valid values for the `workspace` config are either:
260
261 - Workspace names
262 - Path to a workspace directory
263 - Path to a parent workspace directory (will result in selecting all workspaces within that folder)
264
265 When set for the `npm init` command, this may be set to the folder of a workspace which does not yet exist, to create the folder and set it up as a brand new workspace within the project.
266
267 This value is not exported to the environment for child processes.
268
269 #### `workspaces`
270
271 - Default: null
272 - Type: null or Boolean
273
274 Set to true to run the command in the context of **all** configured workspaces.
275
276 Explicitly setting this to false will cause commands like `install` to ignore workspaces altogether. When not set explicitly:
277
278 - Commands that operate on the `node_modules` tree (install, update, etc.) will link workspaces into the `node_modules` folder. - Commands that do other things (test, exec, publish, etc.) will operate on the root project, _unless_ one or more workspaces are specified in the `workspace` config.
279
280 This value is not exported to the environment for child processes.
281
282 #### `workspaces-update`
283
284 - Default: true
285 - Type: Boolean
286
287 If set to true, the npm cli will run an update after operations that may possibly change the workspaces installed to the `node_modules` folder.
288
289 #### `include-workspace-root`
290
291 - Default: false
292 - Type: Boolean
293
294 Include the workspace root when workspaces are enabled for a command.
295
296 When false, specifying individual workspaces via the `workspace` config, or all workspaces via the `workspaces` flag, will cause npm to operate only on the specified workspaces, and not on the root project.
297
298 This value is not exported to the environment for child processes.
299
300 ### See Also
301
302 - [package spec](/cli/v11/using-npm/package-spec)
303 - [init-package-json module](http://npm.im/init-package-json)
304 - [package.json](/cli/v11/configuring-npm/package-json)
305 - [npm version](/cli/v11/commands/npm-version)
306 - [npm scope](/cli/v11/using-npm/scope)
307 - [npm exec](/cli/v11/commands/npm-exec)
308 - [npm workspaces](/cli/v11/using-npm/workspaces)