All Projects → jslicense → spdx-license-ids

jslicense / spdx-license-ids

Licence: other
a list of SPDX license identifiers

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to spdx-license-ids

licensor
write licenses to stdout
Stars: ✭ 138 (+375.86%)
Mutual labels:  license, spdx
Mlib
Library of generic and type safe containers in pure C language (C99 or C11) for a wide collection of container (comparable to the C++ STL).
Stars: ✭ 321 (+1006.9%)
Mutual labels:  list, array
Fossology
FOSSology is an open source license compliance software system and toolkit. As a toolkit you can run license, copyright and export control scans from the command line. As a system, a database and web ui are provided to give you a compliance workflow. License, copyright and export scanners are tools used in the workflow.
Stars: ✭ 440 (+1417.24%)
Mutual labels:  oss, license
specification
Software Bill of Material (SBOM) standard designed for use in application security contexts and supply chain component analysis
Stars: ✭ 129 (+344.83%)
Mutual labels:  license, spdx
Containers
This library provides various containers. Each container has utility functions to manipulate the data it holds. This is an abstraction as to not have to manually manage and reallocate memory.
Stars: ✭ 125 (+331.03%)
Mutual labels:  list, array
Carte
🍴 Open source license notice view generator for Swift
Stars: ✭ 167 (+475.86%)
Mutual labels:  oss, license
ienumerable
Deep immutable, Lightweight Enumerable with superpowers
Stars: ✭ 63 (+117.24%)
Mutual labels:  list, array
Android interviews
🚀Everything you need to know to find a android job. 算法 / 面试题 / Android 知识点 🔥🔥🔥 总结不易,你的 star 是我最大的动力!
Stars: ✭ 510 (+1658.62%)
Mutual labels:  list, array
An Array Of English Words
List of ~275,000 English words
Stars: ✭ 114 (+293.1%)
Mutual labels:  list, array
Smart Array To Tree
Convert large amounts of data array to tree fastly
Stars: ✭ 91 (+213.79%)
Mutual labels:  list, array
license-ls
Get a list of licenses used by a projects dependencies
Stars: ✭ 17 (-41.38%)
Mutual labels:  license, spdx
Coinlist
Comprehensive list of cryptocurrencies with metadata
Stars: ✭ 148 (+410.34%)
Mutual labels:  list, array
scancode.io
ScanCode.io is a server to script and automate software composition analysis pipelines with ScanPipe pipelines. This project is sponsored by NLnet project https://nlnet.nl/project/vulnerabilitydatabase/ Google Summer of Code, nexB and others generous sponsors!
Stars: ✭ 66 (+127.59%)
Mutual labels:  license, spdx
lazy-arr
Arrays that look just like regular JavaScript arrays, but are computed lazily.
Stars: ✭ 67 (+131.03%)
Mutual labels:  array
Array.prototype.at
An ES-spec-compliant (proposed) `Array.prototype.at`shim/polyfill/replacement that works as far down as ES3.
Stars: ✭ 20 (-31.03%)
Mutual labels:  array
remark-license
plugin to generate a license section
Stars: ✭ 15 (-48.28%)
Mutual labels:  license
go-graylog
Graylog API client for Go and terraform provider for Graylog
Stars: ✭ 45 (+55.17%)
Mutual labels:  oss
vlsi-release-plugins
A set of plugins to simplify Gradle release tasks
Stars: ✭ 30 (+3.45%)
Mutual labels:  license
file-storage-system
一个基于 Go 语言实现的分布式云存储服务,慕课网实战仿百度网盘项目。
Stars: ✭ 149 (+413.79%)
Mutual labels:  oss
tiny-oss
A tiny aliyun oss sdk for browser which focus on uploading.
Stars: ✭ 25 (-13.79%)
Mutual labels:  oss

spdx-license-ids

npm version Github Actions

A list of SPDX license identifiers

Installation

Download JSON directly, or use npm:

npm install spdx-license-ids

Node.js API

require('spdx-license-ids')

Type: string[]

All license IDs except for the currently deprecated ones.

const ids = require('spdx-license-ids');
//=> ['0BSD', 'AAL', 'ADSL', 'AFL-1.1', 'AFL-1.2', 'AFL-2.0', 'AFL-2.1', 'AFL-3.0', 'AGPL-1.0-only', ...]

ids.includes('BSD-3-Clause'); //=> true
ids.includes('CC-BY-1.0'); //=> true

ids.includes('GPL-3.0'); //=> false

require('spdx-license-ids/deprecated')

Type: string[]

Deprecated license IDs.

const deprecatedIds = require('spdx-license-ids/deprecated');
//=> ['AGPL-1.0', 'AGPL-3.0', 'GFDL-1.1', 'GFDL-1.2', 'GFDL-1.3', 'GPL-1.0', 'GPL-2.0', ...]

deprecatedIds.includes('BSD-3-Clause'); //=> false
deprecatedIds.includes('CC-BY-1.0'); //=> false

deprecatedIds.includes('GPL-3.0'); //=> true

License

Creative Commons Zero v1.0 Universal

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].