Files
2021-07-15 13:04:11 +05:30

1.8 KiB
Raw Permalink Blame History

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
587d8247367417b2b2512c36 安装和引入 Helmet 2 301581 install-and-require-helmet

--description--

你可以采用下面的任意一种编写代码的方式来完成这些挑战:

完成本项目后,请将一个正常运行的 demo项目演示托管在可以公开访问的平台。 然后在 Solution Link 字段中提交它的 URL。

Helmet 通过设置各种 HTTP 头来保护你的 Express 应用程序。

--instructions--

你在这些课程中写的所有代码都在 myApp.js 文件中,在初始代码之间。 不要改变或删除我们为你添加的代码。

安装 Helmet 的 3.21.3 版本,然后引入它。 你可以用 npm install --save-exact package@version 来安装一个特定版本的软件包,或者直接将其添加到你的 package.json 中。

--hints--

helmet 版本 3.21.3 应该在 package.json 中。

(getUserInput) =>
  $.get(getUserInput('url') + '/_api/package.json').then(
    (data) => {
      const packJson = JSON.parse(data);
      const helmet = packJson.dependencies.helmet;
      assert(helmet === '3.21.3' || helmet === '^3.21.3');
    },
    (xhr) => {
      throw new Error(xhr.responseText);
    }
  );

--solutions--

/**
  Backend challenges don't need solutions, 
  because they would need to be tested against a full working project. 
  Please check our contributing guidelines to learn more.
*/