Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
broccoli-dist-es6-module
Advanced tools
Author in ES6 modules, distribute in cjs, amd, named-amd, and globals
Author your library in ES6 modules and distribute in everything under the sun:
$ npm install broccoli-dist-es6-module
Brocfile.js
var dist = require('broccoli-dist-es6-module');
module.exports = dist('lib', {
// the entry script, and module that becomes the global
main: 'main',
// will become window.ic.ajax with the exports from `main`
global: 'ic.ajax',
// the prefix for named-amd modules
packageName: 'ic-ajax',
// global output only: naive shimming, when the id 'ember' is imported,
// substitute with `window.Ember` instead
shim: {
'ember': 'Ember'
}
});
And then run broccoli:
$ broccoli build dist
Open up dist
to see the results.
main
- the entry script to your package, determines which module
exports to your global namespace, also the package that is returned in
AMD with require(['your-package-name'])
packageName
- named-amd, the name of your package
require(['your-package-name'])
;
global
- globals: the global to attach your main
module to
shim
- globals: map import string ids to objects on window
, see
usage above or the examples
This uses the compatFix
option of the es6-module-transpiler which is
not necessarily future proof (but without it we couldn't import jQuery from 'jquery'
).
The shimming is really hacky, but its working.
FAQs
Author in ES6 modules, distribute in cjs, amd, named-amd, and globals
We found that broccoli-dist-es6-module 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
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.