koa头盔:koa的重要安全标头 源码
头盔 koa头盔是与配合使用的包装材料。 它提供了重要的安全标头,默认情况下可使您的应用程序更安全。 安装 yarn add koa-helmet 或通过npm: npm install koa-helmet --save 用法 用法与相同 头盔提供11种安全中间件功能: // This... app . use ( helmet ( ) ) ; // ...is equivalent to this: app . use ( helmet . contentSecurityPolicy ( ) ) ; app . use ( helmet . dnsPrefetchControl (
用户评论