How to use the csp function from helmet

Find comprehensive JavaScript helmet.csp code examples handpicked from public code repositorys.

25
26
27
28
29
30
31
32
33
34

`csp` - предотвращение межсайтовых вмешательств через задание заголовка `Content-Security-Policy`, с полным списком задаваемых параметров можно ознакомиться [здесь](https://helmetjs.github.io/docs/csp/);

```js
app.use(
    helmet.csp({
        directives: {
            objectSrc: ['none'],
            workerSrc: false, //значение не задается
        },
fork icon14
star icon101
watch icon3

+ 5 other calls in file