@use JSDoc

語法

@license <識別碼>

概觀

@license 標籤識別適用於程式碼任何部分的軟體授權。

您可以使用任何文字來識別您正在使用的授權。如果您的程式碼使用標準的開源授權,請考慮使用 軟體套件資料交換 (SPDX) 授權清單 中適當的識別碼。

某些 JavaScript 處理工具(例如 Google 的 Closure Compiler)會自動保留任何包含 @license 標籤的 JSDoc 註解。如果您正在使用其中一個工具,您可能希望新增一個獨立的 JSDoc 註解,其中包含 @license 標籤以及授權的完整文字,以便授權文字會包含在產生的 JavaScript 檔案中。

範例

在 Apache License 2.0 下發布的模組
/**
 * Utility functions for the foo package.
 * @module foo/util
 * @license Apache-2.0
 */
包含完整 MIT 授權的獨立 JSDoc 註解
/**
 * @license
 * Copyright (c) 2015 Example Corporation Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */