summaryrefslogtreecommitdiffstats
path: root/src/webenginewidgets/doc/snippets/push-notifications/commands
blob: aee9761c10f4ae21943d7ec816eb5955f9709267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
npm init -y
npm install web-push express
//! [0]

//! [1]
"start": "node server.js"
//! [1]

//! [2]
./node_odules/.bin/web-push generate-vapid-keys
//! [2]

//! [3]
npm start
//! [3]