Skip to content

OpenSourceOrg/node-opensource

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node-opensource

Node-opensource is an API Wrapper that allows you to query the Open Source License API with Nodejs.

Example

const licenses = require('node-opensource');

// Get all known licenses
licenses.all(function(err, data) {
  // Do something with data
})

// Get license from it's OSI ID
licenses.get("MIT", function(err, data) {
  // Do something with data
})

// Get license from keyword
licenses.tagged("copyleft", function(err, data) {
  // Do something with data
})

Using Promises

const licenses = require('node-opensource');

// Get all known licenses
licenses.all()
.then(function(data) {
  // Do something with data
}).catch(function(error) {
  // Error
});

// Get license from it's OSI ID
licenses.get("MIT")
.then(function(data) {
  // Do something with data
}).catch(function(error) {
  // Error
});

// Get license from keyword
licenses.tagged("copyleft")
.then(function(data) {
  // Do something with data
}).catch(function(error) {
  // Error
});

Installing

npm install node-opensource