npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

oslicense

v1.3.0

Published

A simple helper tool to retrieve Open Source Initiative-approved licenses.

Downloads

45

Readme

Open Source Licenses

Quickly and easily license your projects with licenses from the Open Source Initiative.

This project is not directly affiliated with Open Source Initiative; it consumes data from the public API and license repository. See the following for more information:

  • https://opensource.org
  • https://api.opensource.org
  • https://github.com/OpenSourceOrg/licenses

Installation

Global CLI

# Global CLI
npm install --global oslicense

# Module
npm install oslicense

Usage (CLI)

oslicense [<args>] [<license-id>]

Automatically generates a license file ('LICENSE.md') or outputs license text for a given OSI license ID. If a package.json file with a license property is present, that license ID will be used. package.json lookup will start with the current working directory, checking all parent directories until a package.json file is found.

The <license-id> argument (case-sensitive) must match one of the license IDs returned using the --list flag.

The generated license file may have placeholders for license holder names, dates, etc. that will need to be replaced manually.

CLI Arguments

-h, --help

Shows CLI help text.

-v, --version

Shows the package version number.

-l, --list

Lists all available OSI licenses and license IDs.

License-ID-01:
    License 01 Name

License-ID-02:
    License 02 Name

...

-o, --output <path>

Specifies an alternate output file name and/or directory for the generated license file. Relative paths are relative to the current working directory.

If <path> is a directory, then the license file will be created with the default file name in the directory.

-s, --stdout

Prints license text to stdout instead of generating a license file. If specified, the --output flag will be ignored.

Usage (Module)

const osl = require("oslicense");

(async () => {
    try {
        // Get object containing all available OSI licenses, keyed by license ID
        console.log(await osl.getLicenses());
        
        // Get license metadata for a specific license ID
        console.log(await osl.getLicenseData("MIT"));
        
        // Get license text for a specific license ID or license object from
        // getLicenseData()
        console.log(await osl.getLicenseText("MIT"));
        
        // Gets the 'license' property value from the nearest package.json file
        // relative to the current working directory
        console.log(osl.getNearestLicense());
    }
    catch (e) {
        console.error(e);
    }
})();

For more detailed usage information, refer to the documentation in oslicense.js