![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.
Library that applies pre and post transforms to CommonJS files, traces their dependencies and concatenates them.
Library for transforming, tracing and concatenating CommonJS files.
npm install galvatron
require('galvatron');
The most common usage for Galvatron is to take a single file and transform it into a concatenated JavaScript file that includes the content of that file and all of its dependencies.
var fs = require('fs');
var galvatron = require('galvatron');
fs.writeFile('dist/*.js', galvatron.bundle('src/index.js').compile());
If you want to take multiple files and transform them into a single file you can do that too. It will still trace each file's dependencies in the proper order and will additionally make sure that none are duplicated. Both a path, glob pattern or an array of a mixture of either are supported.
var compiled = galvatron.bundle([
'bower_components/jquery/jquery.js',
'src/*.js'
]).compile();
Dependencies are resolved in a couple different ways depending on the path that is given. First off, the files you specify to get traced and concatenated are resolved relative to the current working directory. Internally Galvatron will inspect the path and determine if the path is:
Module names are resolved in several different ways.
It will go up the directory tree - starting with the directory which the require()
call originated in - and look for a bower_components
folder and a node_modules
folder, in that order. It first looks to see if there is a bower.json
or a package.json
depending on the package manager and if it contains a main
definition, it will use that. If it doesn't find a main, it will look for an index.js
or a file with the same name as the module but with a js
extension in the component root, src
, lib
or dist
directories (in that order).
You can also use module names instead of paths when specifying files to Galvatron:
var underscoreAndDepenendies = galvatron.bundle('underscore').compile();
Galvatron has a notion of both pre
and post
transorms. The pre
transforms happen prior to tracing dependencies. This means that if you need to transform your code prior to tracing it for its dependencies, then you can do so. The post
transforms happen after tracing and are intended to transform your source before it is concatenated.
There are three built-in transformers:
babel
globalize
unamd
Built-in transformers can be specified by their name:
galvatron.transform.post('babel', options);
Or be used directly:
var babel = require('galvatron/transform/babel');
galvatron.transform.post(babel(options));
The babel
transformer will transpile your code from ES6 to ES5 using Babel. Simply tell Galvatron to use it:
galvatron.tranform.post('babel');
The globalize
transform transforms your code from CommonJS into browser globals that won't conflict with any other globals. If they do, then you should probably reassess how you name your global variables. They're hardly global.
The great part about this is that there's no need for a shim, so code bloat is kept to a minimum. Since there's no shim, you'll never have any module loader conflicts and globals will work even if you've split up your concatenated source into separate files and they reference each other's dependencies.
This is especially useful when you're writing an open source library and you've got zero control over what your consumer is including with your library or framework. If you use Browserify you have to be careful because their shim will use whatever require
is on the page if it's there before the shim. This means that it could potentially break the world. The solution according to an open issue is to change the AMD code. This doesn't help if you don't have control over other code on the page.
The unamd
transform will no-op any AMD code that is traced by Galvatron. This might change in the future to only no-op anonymous modules. This is useful when you don't want to put your code through r.js
just to make the define
calls happy. If you're using CommonJS, you've probably got no use for them anyways.
You can also write custom transformers. A transformer is simply a function that takes two arguments.
galvatron.transformer.pre(function (code, data) {
return doSomeTransformationsTo(code);
});
The code
argument is a string representing the current form of the code. It may have been altered by a previous transformer, or if this is the first transformation step, it may be the exact contents of the file.
The data
argument is an object containing information about the file. Depending on the type of transformer, this will contain different information.
As a pre
transformer:
path
The file path.As a post
transformer:
path
The file path.imports
Dependency paths as they are defined in the import statement (import
, require()
, etc.).dependencies
Absolute dependency paths resolved from their respective import path.Streams are super useful if you want to integrate your build into a stream system such as Gulp.
var bundle = galvatron.bundle('src/*.js');
gulp.src(bundle.files)
.pipe(bundle.stream())
.pipe(gulp.dest('dist'));
The stream()
method returns a vinyl
stream created by vinylTransform
, so it can be used anywhere a vinyl
stream can be used, not just with Gulp.
You can create watch streams, too:
var bundle = galvatron.bundle('src/*.js');
gulp.src(bundle.files)
.pipe(bundle.watch())
.pipe(bundle.stream())
.pipe(gulp.dest('dist'));
FAQs
Library that applies pre and post transforms to CommonJS files, traces their dependencies and concatenates them.
The npm package galvatron receives a total of 8 weekly downloads. As such, galvatron popularity was classified as not popular.
We found that galvatron demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.