![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
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 (and some other CDNs).
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>';
googlecdn(markup, bowerConfig, function (err, result) {
if (err) {
throw err;
}
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.cdn
: defaults to google
. CDN you want to use. Possible values: google
,
cdnjs
or object of the following format:{
jquery: {
versions: ['2.0.3', '2.0.2', '2.0.1', '2.0.0'],
url: function (version) {
return '//my.own.cdn/libs/jquery/' + version + '/jquery.min.js';
}
}
}
You can turn on debugging by setting the DEBUG
environment variable to
google-cdn
. E.g.
env DEBUG='google-cdn' grunt cdnify
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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.