spdx-expression-parse
Last updated
Was this helpful?
Last updated
Was this helpful?
This package parses strings describing license terms, like , into consistently structured ECMAScript objects. The npm command-line interface depends on this package, as do many automatic license-audit tools.
In a nutshell:
The bulk of the SPDX standard describes syntax and semantics of XML metadata files. This package implements two lightweight, plain-text components of that larger standard:
Any license identifier from the license list is a valid license expression:
So is any license identifier WITH
a standardized license exception:
The license expression language, for describing simple and complex license terms, like MIT
for MIT-licensed and (GPL-2.0 OR Apache-2.0)
for dual-licensing under GPL 2.0 and Apache 2.0. spdx-expression-parse
itself implements license expression language, exporting a parser.
The syntax comes from the , a standard from the for shareable data about software package license terms. SPDX aims to make sharing and auditing license data easy, especially for users of open-source software.
The , a mapping from specific string identifiers, like Apache-2.0
, to standard form license texts and bolt-on license exceptions. The and packages implement the license list. spdx-expression-parse
depends on and require()
s them.
The Linux Foundation and its contributors license the SPDX standard under the terms of . "SPDX" is a United States federally registered trademark of the Linux Foundation. The authors of this package license their work under the terms of the MIT License.