/
home
/
techb158
/
.nvm
/
versions
/
node
/
v22.6.0
/
lib
/
node_modules
/
npm
/
man
/
man1
/
/home/techb158/.nvm/versions/node/v22.6.0/lib/node_modules/npm/man/man1
mkdir
upload
Name
Size
Mode
Actions
npm-access.1
4062
0644
edit
dl
rm
npm-adduser.1
1992
0644
edit
dl
rm
npm-audit.1
17381
0644
edit
dl
rm
npm-bugs.1
3379
0644
edit
dl
rm
npm-cache.1
3132
0644
edit
dl
rm
npm-ci.1
10181
0644
edit
dl
rm
npm-completion.1
997
0644
edit
dl
rm
npm-config.1
4636
0644
edit
dl
rm
npm-dedupe.1
9862
0644
edit
dl
rm
npm-deprecate.1
1892
0644
edit
dl
rm
npm-diff.1
9771
0644
edit
dl
rm
npm-dist-tag.1
5636
0644
edit
dl
rm
npm-docs.1
3361
0644
edit
dl
rm
npm-doctor.1
5372
0644
edit
dl
rm
npm-edit.1
1180
0644
edit
dl
rm
npm-exec.1
12491
0644
edit
dl
rm
npm-explain.1
2937
0644
edit
dl
rm
npm-explore.1
1089
0644
edit
dl
rm
npm-find-dupes.1
7590
0644
edit
dl
rm
npm-fund.1
4054
0644
edit
dl
rm
npm-help-search.1
867
0644
edit
dl
rm
npm-help.1
1099
0644
edit
dl
rm
npm-hook.1
2708
0644
edit
dl
rm
npm-init.1
11103
0644
edit
dl
rm
npm-install-ci-test.1
8320
0644
edit
dl
rm
npm-install-test.1
11149
0644
edit
dl
rm
npm-install.1
26964
0644
edit
dl
rm
npm-link.1
12950
0644
edit
dl
rm
npm-login.1
2345
0644
edit
dl
rm
npm-logout.1
1887
0644
edit
dl
rm
npm-ls.1
9419
0644
edit
dl
rm
npm-org.1
2310
0644
edit
dl
rm
npm-outdated.1
6377
0644
edit
dl
rm
npm-owner.1
3363
0644
edit
dl
rm
npm-pack.1
3876
0644
edit
dl
rm
npm-ping.1
849
0644
edit
dl
rm
npm-pkg.1
8704
0644
edit
dl
rm
npm-prefix.1
1317
0644
edit
dl
rm
npm-profile.1
3421
0644
edit
dl
rm
npm-prune.1
6457
0644
edit
dl
rm
npm-publish.1
8309
0644
edit
dl
rm
npm-query.1
7688
0644
edit
dl
rm
npm-rebuild.1
5664
0644
edit
dl
rm
npm-repo.1
3143
0644
edit
dl
rm
npm-restart.1
1709
0644
edit
dl
rm
npm-root.1
1194
0644
edit
dl
rm
npm-run-script.1
8377
0644
edit
dl
rm
npm-sbom.1
8996
0644
edit
dl
rm
npm-search.1
3952
0644
edit
dl
rm
npm-shrinkwrap.1
1004
0644
edit
dl
rm
npm-star.1
1807
0644
edit
dl
rm
npm-stars.1
795
0644
edit
dl
rm
npm-start.1
1835
0644
edit
dl
rm
npm-stop.1
1466
0644
edit
dl
rm
npm-team.1
4503
0644
edit
dl
rm
npm-test.1
1379
0644
edit
dl
rm
npm-token.1
3186
0644
edit
dl
rm
npm-uninstall.1
4986
0644
edit
dl
rm
npm-unpublish.1
4900
0644
edit
dl
rm
npm-unstar.1
1658
0644
edit
dl
rm
npm-update.1
13223
0644
edit
dl
rm
npm-version.1
7755
0644
edit
dl
rm
npm-view.1
6146
0644
edit
dl
rm
npm-whoami.1
873
0644
edit
dl
rm
npm.1
5947
0644
edit
dl
rm
npx.1
6407
0644
edit
dl
rm
Edit:
/home/techb158/.nvm/versions/node/v22.6.0/lib/node_modules/npm/man/man1/npm-start.1
(1835B)
.TH "NPM-START" "1" "July 2024" "NPM@10.8.2" "" .SH "NAME" \fBnpm-start\fR - Start a package .SS "Synopsis" .P .RS 2 .nf npm start \[lB]-- <args>\[rB] .fi .RE .SS "Description" .P This runs a predefined command specified in the \fB"start"\fR property of a package's \fB"scripts"\fR object. .P If the \fB"scripts"\fR object does not define a \fB"start"\fR property, npm will run \fBnode server.js\fR. .P Note that this is different from the default node behavior of running the file specified in a package's \fB"main"\fR attribute when evoking with \fBnode .\fR .P As of \fB\fBnpm@2.0.0\fR\fR \fI\(lahttps://blog.npmjs.org/post/98131109725/npm-2-0-0\(ra\fR, you can use custom arguments when executing scripts. Refer to npm help run-script for more details. .SS "Example" .P .RS 2 .nf { "scripts": { "start": "node foo.js" } } .fi .RE .P .RS 2 .nf npm start > npm@x.x.x start > node foo.js (foo.js output would be here) .fi .RE .SS "Configuration" .SS "\fBignore-scripts\fR" .RS 0 .IP \(bu 4 Default: false .IP \(bu 4 Type: Boolean .RE 0 .P If true, npm does not run scripts specified in package.json files. .P Note that commands explicitly intended to run a particular script, such as \fBnpm start\fR, \fBnpm stop\fR, \fBnpm restart\fR, \fBnpm test\fR, and \fBnpm run-script\fR will still run their intended script if \fBignore-scripts\fR is set, but they will \fInot\fR run any pre- or post-scripts. .SS "\fBscript-shell\fR" .RS 0 .IP \(bu 4 Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows .IP \(bu 4 Type: null or String .RE 0 .P The shell to use for scripts run with the \fBnpm exec\fR, \fBnpm run\fR and \fBnpm init <package-spec>\fR commands. .SS "See Also" .RS 0 .IP \(bu 4 npm help run-script .IP \(bu 4 npm help scripts .IP \(bu 4 npm help test .IP \(bu 4 npm help restart .IP \(bu 4 npm help stop .RE 0
Save
cmd:
run