如何在Node JS中生成Web Push Vapid密钥?

问题描述

我安装了Web push:

npm i -S web-push

然后,当我尝试生成键入此命令的快捷键时,会引发错误

./node_modules/.bin/web-push generate-vapid-keys
'.' is not recognized as an internal or external command,operable program or batch file.

如何在node js中生成webpush vapid密钥?

解决方法

我通过使用\而不是/来解决错误

.\node_modules\.bin\web-push generate-vapid-keys
,

您可以使用以下命令生成vapid-keys

npx web-push generate-vapid-keys [--json]

https://www.npmjs.com/package/web-push