freeCodeCamp/curriculum/challenges/chinese/05-apis-and-microservices/managing-packages-with-npm/add-a-license-to-your-packa...

54 lines
1.5 KiB
Markdown
Raw Normal View History

---
id: 587d7fb4367417b2b2512bfe
challengeType: 2
forumTopicId: 301523
2020-10-01 15:54:21 +00:00
title: 给 package.json 添加许可证
---
## Description
<section id='description'>
license 字段是你告知用户允许他们拿这个项目干什么的地方。
常见的开源协议是 MIT 和 BSD。如果你想了解更多适合你项目的许可证的信息那么 http://choosealicense.com 是一个不错的网站。
许可证信息并不是必须的。大多数国家的版权法会默认让你拥有自己创作的作品的所有权。但是,明确说明用户可以做什么和不能做什么会是一个很好的做法。
以下是一个 license 字段的示例:
```json
"license": "MIT",
```
</section>
## Instructions
<section id='instructions'>
在 Glitch 项目的 package.json 中填写合适的 license 字段。
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: "package.json 应该有一个有效的 'license' 键。"
testString: 'getUserInput => $.get(getUserInput(''url'') + ''/_api/package.json'').then(data => { var packJson = JSON.parse(data); assert(packJson.license, ''"license" is missing''); }, xhr => { throw new Error(xhr.responseText); })'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
/**
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.
*/
```
</section>