
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
callback-loader
Advanced tools
Webpack loader that parses your JS, calls specified functions and replaces their with the results.
Webpack loader that parses your JS, calls specified functions and replaces their with the results.
npm install callback-loader --save-dev
Source file:
var a = multBy2(10);
var b = mult(10, 3);
var c = concat("foo", "bar");
Webpack config:
{
...
callbackLoader: {
multBy2: function(num) {
return num * 2;
},
mult: function(num1, num2) {
return num1 * num2;
},
concat: function(str1, str2) {
return '"' + str1 + str2 + '"';
}
}
}
Result:
var a = 20;
var b = 30;
var c = "foobar";
Notice that quotes was added in concat function.
You can choose which functions will be processed in your query:
'callback?mult&multBy2!example.js'
Result for this query will be this:
var a = 20;
var b = 30;
var c = concat("foo", "bar");
Webpack config:
{
...
callbackLoader: {
concat: function(str1, str2) {
return '"' + str1 + str2 + '"';
}
},
anotherConfig: {
concat: function(str1, str2) {
return '"' + str1 + str2 + '-version2"';
}
}
}
Loader query:
'callback?config=anotherConfig!example.js'
Result for this query will be this:
var a = multBy2(10);
var b = mult(10, 3);
var c = "foobar-version2";
No expressions and variables in function arguments yet, sorry. Only raw values.
Ok, let's say we need an array of points for a map in points.js file:
module.exports = [
{
name: 'Moscow',
coords: [37.617, 55.756]
}, {
name: 'Tokyo',
coords: [139.692, 35.689]
}, ...
]
But we don't want to search and write coordinates by yourself. We just want to type city names and let Google Maps API do the REST. But at the same time it's not a good idea to send hundreds of requests each time user open your map. Can we do this once in a build time?
Let's write something like this:
module.exports = [
{
name: 'Moscow',
coords: okGoogleGiveMeTheCoords('Moscow, Russia')
}, {
name: 'Tokyo',
coords: okGoogleGiveMeTheCoords('Tokyo, Japan')
}, ...
]
Looks much more pretty, right? Now we just need to implement okGoogleGiveMeTheCoords and config callback-loader:
var request = require('sync-request');
...
var webpackConfig = {
...
pointsCallback: {
okGoogleGiveMeTheCoords: function (address) {
var response = request('GET', 'http://maps.google.com/maps/api/geocode/json?address=' + address + '&sensor=false');
var data = JSON.parse(response.getBody());
var coords = data.results[0].geometry.location;
return '[' + coords.lng + ', ' + coords.lat + ']';
}
}
}
Now write a require statement:
var points = require('callback?config=pointsCallback!./points.js');
And in points we have the array from the first example but we didn't write none of coordinates.
FAQs
Webpack loader that parses your JS, calls specified functions and replaces their with the results.
The npm package callback-loader receives a total of 133 weekly downloads. As such, callback-loader popularity was classified as not popular.
We found that callback-loader 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
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.