Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
A command line tool to search for the URL of a library hosted on cdnjs.com
A program to scrape cdnjs for the URL of a given library. Here's how you use it.
$ npm install -g cdnsearch
$ cdnsearch jquery
jquery -> http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js
Or you can pass the -m/--minimal flag to make it output the URL only.
$ cdnsearch -m jquery
http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js
cdnsearch searches for an exact match. You can use % as a wildcard character . For example, the following search matches all libraries starting with "jquery":
$ cdnsearch jquery%
You can also pass the -d/--detailed flag (making a separate HTTP request for each result) to get all relevant URLs associated with the latest version of the library, as well as a short text description.
You can pass multiple search queries to cdnsearch. For example,
$ cdnsearch angular.js %ui-router
angular.js -> http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.20/angular.min.js
angular-ui-router -> http://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.10/angular-ui-router.min.js
Copyright (c) 2014 Raymond Pulver IV
Licensed under the MIT License
FAQs
A command line tool to search for the URL of a library hosted on cdnjs.com
The npm package cdnsearch receives a total of 5 weekly downloads. As such, cdnsearch popularity was classified as not popular.
We found that cdnsearch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.