.TH "NPM\-HOOK" "1" "November 2022" "9.1.1" .SH "NAME" \fBnpm-hook\fR .SH Synopsis .P Note: This command is unaware of workspaces\. .SH Description .P Allows you to manage npm .br hooks, .br including adding, removing, listing, and updating\. .P Hooks allow you to configure URL endpoints that will be notified whenever a .br change happens to any of the supported entity types\. Three different types .br of entities can be watched by hooks: packages, owners, and scopes\. .P To create a package hook, simply reference the package name\. .P To create an owner hook, prefix the owner name with \fB~\fP (as in, .br \fB~youruser\fP)\. .P To create a scope hook, prefix the scope name with \fB@\fP (as in, .br \fB@yourscope\fP)\. .P The hook \fBid\fP used by \fBupdate\fP and \fBrm\fP are the IDs listed in \fBnpm hook ls\fP .br for that particular hook\. .P The shared secret will be sent along to the URL endpoint so you can verify .br the request came from your own configured hook\. .SH Example .P Add a hook to watch a package for changes: .RS 2 .nf $ npm hook add lodash https://example\.com/ my\-shared\-secret .fi .RE .P Add a hook to watch packages belonging to the user \fBsubstack\fP: .RS 2 .nf $ npm hook add ~substack https://example\.com/ my\-shared\-secret .fi .RE .P Add a hook to watch packages in the scope \fB@npm\fP .RS 2 .nf $ npm hook add @npm https://example\.com/ my\-shared\-secret .fi .RE .P List all your active hooks: .RS 2 .nf $ npm hook ls .fi .RE .P List your active hooks for the \fBlodash\fP package: .RS 2 .nf $ npm hook ls lodash .fi .RE .P Update an existing hook's url: .RS 2 .nf $ npm hook update id\-deadbeef https://my\-new\-website\.here/ .fi .RE .P Remove a hook: .RS 2 .nf $ npm hook rm id\-deadbeef .fi .RE .SH Configuration .SH See Also .RS 1 .IP \(bu 2 "Introducing Hooks" blog post .RE