@talend/module-to-cdn
Get cdn config from npm module name
Fork
This module is fork of module-to-cdn from Thomas Sileghem.
Because unpkg is great for free usage but not for production usage we decided to made some changes to going forward.
After big PR on the repository and an email to the author we have got no news as all other PRs. So we decided to fork.
Install
$ npm install --save @talend/module-to-cdn
Usage
const moduleToCdn = require('@talend/module-to-cdn');
moduleToCdn('react', '15.3.0');
Note if the package comes with css you will have them under styleUrl
and stylePath
properties
API
moduleToCdn(moduleName, version, options)
return the result Object
or null (if module couldn't be find)
moduleName
Type: string
The name of the module
version
Type: string
The version of the module
options
options.env
Type: string
Values: development
, production
Default: development
Result
name
: name of the modulevar
: name of the global variable exposing the moduleurl
: url where the module is availableversion
: the version asked forpath
: relative path of the umd file in the distributed packagelocal
: absolute path on the current system to the file
Configuration of the resolver
By default the URL resolver just resolve to unpkg.
You can change that using the following API.
import moduleToCdn from '@talend/module-to-cdn';
function myResolver(...args) {
const info = moduleToCdn(...args);
if (process.env.NODE_ENV !== 'development') {
return {
...info,
url: `https://cdn.talend.com/${info.name}/${info.version}${info.path}`
};
}
return info;
}
moduleToCdn.configure(myResolver);
Support private CDN
The module.json file is an open effort on existing opensource libs. If you want to support custom internal library you can add entries in this file using the following API:
import moduleToCdn from '@talend/module-to-cdn';
moduleToCdn.add({
'@talend/my-private-module': {
var: 'TalendMyPrivateModule',
versions: {
'>= 0.0.0': {
development: '/dist/build.js',
production: '/dist/build.min.js'
}
}
}
});
This will affect all future call to moduleToCdn;
Tests
This module do integration tests so it requests npm / unpkg for every packages on the limit of each version and also it tries to fetch the @next version to be as future proof as possible
So if you want to focus on a given module you can use the LIMIT env variable
LIMIT=";ag-grid;ag-grid-community;ag-grid-enterprise;" ava -v
Excluded modules
- hoist-non-react-statics: the umd build contains JS errors (process.env.NODE and require) on every versions.
style-versions
For the sake of simplicity, range must match between js and styles.
Here is the line in the code that read it:
const styleConfig = moduleConf['style-versions'] && moduleConf['style-versions'][range];
So take it as a constraint, for example:
"@talend/design-tokens": {
"var": "TalendDesignTokens",
"versions": {
"> 2.6.0": {
"development": "/dist/TalendDesignTokens.js",
"production": "/dist/TalendDesignTokens.min.js"
}
},
"style-versions": {
"> 2.6.0": {
"development": "/dist/TalendDesignTokens.css",
"production": "/dist/TalendDesignTokens.min.css"
}
}
}
Contribute
To add your modules you have to
- checkout this package on github
- install and run the tests (it will load the cache for the tests)
- add your module in the module.json file
- ensure everytime the provided umd path exists and is valid.
Example of not valid umd: https://unpkg.com/browse/react-popper@1.3.7/dist/index.umd.js
createContext,deepEqual dependencies are always null.
License
MIT © Thomas Sileghem