Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Request the creation of a resource. See the documentation.
Gets the coordinates for all definitions that match the given pattern in the specified part of the definition. See the documentation.
Get all the harvested data for a component revision. See the documentation.
The Clearly Defined API offers a way to interact with the Clearly Defined service, which curates and shares data about the clarity of licenses and security of open source components. You can retrieve detailed information about software components' licenses, scores for clarity, and metadata. On Pipedream, you can harness this API to automate checking the compliance and security of software dependencies, notify pertinent stakeholders about the status of components, and integrate with other tools for a seamless open source governance process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clearly_defined: {
type: "app",
app: "clearly_defined",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.clearly_defined.$auth.environment}.clearlydefined.io/definitions`,
})
},
})