A utility for generating and deploying content security policies in web applications, improving application security. 💖
-
Web Browser
- Can be used as an emulator to build applications. Example [Chrome, Firefox, Safari & Opera]. -
Internet
- Because many use CDN and to make it easier to find solutions to all problems.
const generateCSP = require('content-security-policy-generator');
const options = {
defaultSrc: ["'self'"],
scriptSrc: ["'self'", 'example.com'],
// Add more directives as needed
};
const cspHeader = generateCSP(options);
console.log(cspHeader);
- The generateCSP function takes an options object containing various directives for configuring the CSP. Each directive corresponds to a different aspect of web content security, such as allowed sources for scripts, styles, images, etc. The function then constructs a CSP header string based on these options and returns it.
- The function returns a string representing the Content Security Policy header that should be included in HTTP responses to instruct browsers on how to handle various types of content.
- v1.0.0 : 17 March 2024
- v1.0.1 : 18 March 2024
- v5.0.0 : 31 March 2024
- Facebook : Oned Ionys
- Instagram : @onedionys
- Twitter : @onedionys
- LinkedIn : @onedionys
- Copyright © 2024 One Dionys
- One Dionys - Content Security Policy Generator is an open source project licensed under the MIT license
Love One Dionys - Content Security Policy Generator? Support this project by donating or sharing with others in need.
Made with ❤️ One Dionys