![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
google-cdn
Advanced tools
Grunt task for replacing refs to resources on the Google CDN.
This module makes it easy to replace references to your bower resources in your app with links to the libraries on the Google CDN.
Install: npm install --save google-cdn
bower.json:
{
"name": "my-awesome-app",
"dependencies": {
"jquery": "~2.0.0"
}
}
var googlecdn = require('google-cdn');
var bowerConfig = loadJSON('bower.json');
var markup = '<script src="bower_components/jquery/jquery.js"></script>';
var result = googlecdn(markup, bowerConfig);
assert.equal(result,
'<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>');
Replaces references to libraries supported by the Google CDN in content
.
The library versions are inferred from the bowerJson
.
options
is an optional object with these keys:
componentsPath
: defaults to bower_components
, the path you specify in
your script tags to the components directory.You can use this module in grunt through the grunt-google-cdn plugin, which this module's code is based of.
BSD
FAQs
Replaces references to resources on the Google CDN
The npm package google-cdn receives a total of 5,279 weekly downloads. As such, google-cdn popularity was classified as popular.
We found that google-cdn demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.