$71 GRAYBYTE WORDPRESS FILE MANAGER $86

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/cpanel/ea-nodejs22/lib/node_modules/npm/docs/content/commands/

HOME
Current File : /opt/cpanel/ea-nodejs22/lib/node_modules/npm/docs/content/commands//npm-init.md
---
title: npm-init
section: 1
description: Create a package.json file
---

### Synopsis

```bash
npm init <package-spec> (same as `npx create-<package-spec>`)
npm init <@scope> (same as `npx <@scope>/create`)

aliases: create, innit
```

### Description

`npm init <initializer>` can be used to set up a new or existing npm
package.

`initializer` in this case is an npm package named `create-<initializer>`,
which will be installed by [`npm-exec`](/commands/npm-exec), and then have its
main bin executed -- presumably creating or updating `package.json` and
running any other initialization-related operations.

The init command is transformed to a corresponding `npm exec` operation as
follows:

* `npm init foo` -> `npm exec create-foo`
* `npm init @usr/foo` -> `npm exec @usr/create-foo`
* `npm init @usr` -> `npm exec @usr/create`
* `npm init @usr@2.0.0` -> `npm exec @usr/create@2.0.0`
* `npm init @usr/foo@2.0.0` -> `npm exec @usr/create-foo@2.0.0`

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.

*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:

* `npm init foo@latest` # fetches and runs the latest `create-foo` from
    the registry
* `npm init foo@1.2.3` #  runs `create-foo@1.2.3` specifically

#### Forwarding additional options

Any additional options will be passed directly to the command, so `npm init
foo -- --hello` will map to `npm exec -- create-foo --hello`.

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:

- `npm init foo -y --registry=<url> -- --hello -a`
- `npm exec -y --registry=<url> -- create-foo --hello -a`

### Examples

Create a new React-based project using
[`create-react-app`](https://npm.im/create-react-app):

```bash
$ npm init react-app ./my-react-app
```

Create a new `esm`-compatible package using
[`create-esm`](https://npm.im/create-esm):

```bash
$ mkdir my-esm-lib && cd my-esm-lib
$ npm init esm --yes
```

Generate a plain old package.json using legacy init:

```bash
$ mkdir my-npm-pkg && cd my-npm-pkg
$ git init
$ npm init
```

Generate it without having it ask any questions:

```bash
$ npm init -y
```

### Workspaces support

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.

Given a project with no workspaces, e.g:

```
.
+-- package.json
```

You may generate a new workspace using the legacy init:

```bash
$ npm init -w packages/a
```

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:

```
.
+-- package.json
`-- packages
   `-- a
       `-- package.json
```

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:

```bash
npm init -w packages/my-react-app react-app .
```

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 .`:

```
.
+-- package.json
`-- packages
   +-- a
   |   `-- package.json
   `-- my-react-app
       +-- README
       +-- package.json
       `-- ...
```

### Configuration

#### `init-author-name`

* Default: ""
* Type: String

The value `npm init` should use by default for the package author's name.



#### `init-author-url`

* Default: ""
* Type: "" or URL

The value `npm init` should use by default for the package author's
homepage.



#### `init-license`

* Default: "ISC"
* Type: String

The value `npm init` should use by default for the package license.



#### `init-module`

* Default: "~/.npm-init.js"
* Type: Path

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](/commands/npm-init).



#### `init-version`

* Default: "1.0.0"
* Type: SemVer string

The value that `npm init` should use by default for the package version
number, if not already set in package.json.



#### `yes`

* Default: null
* Type: null or Boolean

Automatically answer "yes" to any prompts that npm might print on the
command line.



#### `force`

* Default: false
* Type: Boolean

Removes various protections against unfortunate side effects, common
mistakes, unnecessary performance degradation, and malicious input.

* Allow clobbering non-npm files in global installs.
* Allow the `npm version` command to work on an unclean git repository.
* Allow deleting the cache folder with `npm cache clean`.
* Allow installing packages that have an `engines` declaration requiring a
  different version of npm.
* Allow installing packages that have an `engines` declaration requiring a
  different version of `node`, even if `--engine-strict` is enabled.
* Allow `npm audit fix` to install modules outside your stated dependency
  range (including SemVer-major changes).
* Allow unpublishing all versions of a published package.
* Allow conflicting peerDependencies to be installed in the root project.
* Implicitly set `--yes` during `npm init`.
* Allow clobbering existing values in `npm pkg`
* Allow unpublishing of entire packages (not just a single version).

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!



#### `scope`

* Default: the scope of the current project, if any, or ""
* Type: String

Associate an operation with a scope for a scoped registry.

Useful when logging in to or out of a private registry:

```
# log in, linking the scope to the custom registry
npm login --scope=@mycorp --registry=https://registry.mycorp.com

# log out, removing the link and the auth token
npm logout --scope=@mycorp
```

This will cause `@mycorp` to be mapped to the registry for future
installation of packages specified according to the pattern
`@mycorp/package`.

This will also cause `npm init` to create a scoped package.

```
# accept all defaults, and create a package named "@foo/whatever",
# instead of just named "whatever"
npm init --scope=@foo --yes
```



#### `workspace`

* Default:
* Type: String (can be set multiple times)

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.

Valid values for the `workspace` config are either:

* Workspace names
* Path to a workspace directory
* Path to a parent workspace directory (will result in selecting all
  workspaces within that folder)

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.

This value is not exported to the environment for child processes.

#### `workspaces`

* Default: null
* Type: null or Boolean

Set to true to run the command in the context of **all** configured
workspaces.

Explicitly setting this to false will cause commands like `install` to
ignore workspaces altogether. When not set explicitly:

- 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.

This value is not exported to the environment for child processes.

#### `workspaces-update`

* Default: true
* Type: Boolean

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.



#### `include-workspace-root`

* Default: false
* Type: Boolean

Include the workspace root when workspaces are enabled for a command.

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.

This value is not exported to the environment for child processes.

### See Also

* [package spec](/using-npm/package-spec)
* [init-package-json module](http://npm.im/init-package-json)
* [package.json](/configuring-npm/package-json)
* [npm version](/commands/npm-version)
* [npm scope](/using-npm/scope)
* [npm exec](/commands/npm-exec)
* [npm workspaces](/using-npm/workspaces)

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
17 Jan 2026 1.16 AM
root / root
0755
npm-access.md
3.578 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-adduser.md
1.804 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-audit.md
15.289 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-bugs.md
2.926 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-cache.md
2.893 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-ci.md
8.911 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-completion.md
0.888 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-config.md
3.997 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-dedupe.md
8.687 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-deprecate.md
1.7 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-diff.md
8.896 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-dist-tag.md
5.06 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-docs.md
2.904 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-doctor.md
4.938 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-edit.md
1.065 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-exec.md
11.134 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-explain.md
2.729 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-explore.md
0.982 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-find-dupes.md
6.638 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-fund.md
3.587 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-help-search.md
0.738 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-help.md
0.98 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-hook.md
2.338 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-init.md
9.624 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-install-ci-test.md
7.26 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-install-test.md
9.584 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-install.md
24.398 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-link.md
11.467 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-login.md
2.12 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-logout.md
1.708 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-ls.md
8.347 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-org.md
1.929 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-outdated.md
5.644 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-owner.md
3.021 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-pack.md
3.367 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-ping.md
0.751 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-pkg.md
7.938 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-prefix.md
1.183 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-profile.md
3.029 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-prune.md
5.61 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-publish.md
7.443 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-query.md
6.795 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-rebuild.md
4.884 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-repo.md
2.689 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-restart.md
1.438 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-root.md
1.071 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-run-script.md
7.384 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-sbom.md
8.142 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-search.md
3.383 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-shrinkwrap.md
0.901 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-star.md
1.673 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-stars.md
0.726 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-start.md
1.628 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-stop.md
1.31 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-team.md
3.994 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-test.md
1.205 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-token.md
2.825 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-uninstall.md
4.343 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-unpublish.md
4.386 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-unstar.md
1.537 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-update.md
11.593 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-version.md
6.74 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-view.md
5.48 KB
17 Jan 2026 1.16 AM
root / root
0644
npm-whoami.md
0.781 KB
17 Jan 2026 1.16 AM
root / root
0644
npm.md
5.537 KB
17 Jan 2026 1.16 AM
root / root
0644
npx.md
5.757 KB
17 Jan 2026 1.16 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF