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.
parcel-map
Advanced tools
gather asset information from file globs in package.json
You can use this module to build a static asset pipeline to work alongside browserify's dependency graph.
var browserify = require('browserify');
var parcelMap = require('parcel-map');
var b = browserify(__dirname + '/views/page1');
var opts = {
keys: [ 'style' ],
defaults: { style: 'images/*.jpg' }
};
parcelMap(b, opts, function (err, graph) {
console.log(graph);
});
b.bundle();
For a views/page1
directory with a package.json of:
{
"style": "*.css"
}
and these files:
page1/index.js
page1/upper.js
page1/beep.css
page1/iamges/beep.jpg
The index.js
requires two files, the 'upper.js'
in the local directory and
'widget'
, a module with a package.json of:
{
"style": "*.css"
}
the resulting parcel-map output is:
{ packages:
{ '2a0f0daf500f9de39847f70e6ded76b27543fdc3':
{ style: '*.css',
__dirname: '/home/substack/projects/parcel-map/example/views/page1' },
'80f1bf36696fb5ff6602576674c3a2774252a623':
{ style: '*.css',
__dirname: '/home/substack/projects/parcel-map/example/node_modules/widget' } },
assets:
{ '/home/substack/projects/parcel-map/example/views/page1/beep.css': '2a0f0daf500f9de39847f70e6ded76b27543fdc3',
'/home/substack/projects/parcel-map/example/views/page1/images/beep.jpg': '2a0f0daf500f9de39847f70e6ded76b27543fdc3',
'/home/substack/projects/parcel-map/example/node_modules/widget/style.css': '80f1bf36696fb5ff6602576674c3a2774252a623' },
dependencies:
{ '2a0f0daf500f9de39847f70e6ded76b27543fdc3': [ '80f1bf36696fb5ff6602576674c3a2774252a623' ],
'80f1bf36696fb5ff6602576674c3a2774252a623': [] } }
Note how parcel-map found the local css in page1/beep.css
and the image
page1/beep.jpg
from the default "images/*.jpg"
glob.
It also found the widget/style.css
from the widget module, because widget was
included from index.js
, so the lookup rules were triggered and the
package.json in widget/
was processed through the parcel-map rules.
You can generate this parcel map output with the API directly or you can use parcel-map as a browserify-plugin:
$ browserify -p [ parcel-map -k style -o map.json ] views/page1 > static/bundle.js
var parcelMap = require('parcel-map');
Pass in a browserify bundle
and some opts
in order to generate the parcel
map and get the result in cb(err, parcelMap)
.
parcelMap
is an object with these keys:
"packages"
maps package IDs to package.json contents."assets"
maps asset file paths captured from
glob expansion
to the containing package's ID."dependencies"
maps package IDs to an array of dependency package IDs.The opts
options are:
opts.defaults
- an object mapping dotted keypaths into the package.json with
default values to use when there is no field present in the package.json at the
location indicatedopts.keys
- an array of keys, dotted keypath strings, or array keypaths that
traverse into the package.json to values that are
glob strings.With npm do:
npm install parcel-map
MIT
FAQs
gather asset information from file globs in package.json
The npm package parcel-map receives a total of 29 weekly downloads. As such, parcel-map popularity was classified as not popular.
We found that parcel-map 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.