Module that provides means to check/search in supported CDNs.
- Source:
Members
-
<static> supportedCdn
-
List of supported CDNs.
- Source:
Methods
-
<static> detect(name, callback, settings)
-
Check whether package with the specified name is existent, or make search for the specified string. Data about found packages will be passed into callback as array. If no package is found, empty array will be passed into callback.
Parameters:
Name Type Description name
String Name of the package to check or string to search for. callback
function Function that should be called to process operation's result. settings
Object Operation settings. The following settings are supported (name - type - description): cdn
-String
- CDN in which check/search should be made:cdnjs
orjsdelivr
(case-insensitive)caseSensitive
-Boolean
- Whether case-sensitive check/search should be usedpartialMatch
-Integer
- Allow partial matching when checking name: 0 - disallow (by default), 1 - allow at the beginning of matching strings, 2 - allow substring matchingsearch
-Boolean
- Whether search should be made instead of checklimit
-Integer
- Limit of quantity of results
cdn
.- Source: