python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Does Using Helmet Package Protect My Frontend Aswell in Node.js with React.js
I have a question about how will i secure my frontend if i am using nodejs as a backend. For example i created my website fully with react as a frontend and my backend with nodejs and used Axios to ge...
motionless570
Votes: 0
Answers: 1
Why is my nonce being ignored in node.js?
I get the following error message when I try to call a script with a nonce:
Refused to execute inline event handler because it violates the following Content Security Policy directive: "script-sr...
Bragon
Votes: 0
Answers: 1
Express CSP Nonce with TypeScript
I have an express project in TypeScript and I tried to add a CSP Nonce with Helmet.
app.use(helmet.contentSecurityPolicy({
useDefaults: true,
directives: {
scriptSrc: ["'self'&quo...
Fridolin1
Votes: 0
Answers: 1
Express js : Content security header is not reflecting
In my express js application I have enabled the helmet for the security implementation
const app = express();
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin"...
shamon shamsudeen
Votes: 0
Answers: 1