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.
@garfish/loader
Advanced tools
@garfish/loader
import { Loader } from '@garfish/loader';
const loader = new Loader({
maxSize: 1024 * 1024 * 15, // default number is "1024 * 1024 * 15"
});
loader.hooks.usePlugin({
name: 'test-plugin1',
beforeLoad({ url, config }) {
// You can changed the request config
if (url.includes('xx')) {
url = url.replace('xx', '');
}
return { url, config };
},
loaded(data) {
const { result, value } = data;
data.n = 1;
return data;
},
});
loader.hooks.usePlugin({
name: 'test-plugin2',
loaded(data) {
console.log(data.n); // 1
// The "data.value" will be cached this time.
// So, you can transform the request result.
return data;
},
});
loader.load({scope: 'appName', url: 'https://xxx'}).then((result) => {
console.log(result); // 2
});
const loader = new Loader();
loader.clear('appName'); // Clear all cached resources under "appName"
loader.clear('appName', 'js'); // Clear all "js" cache resources under "appName"
loader.clearAll(); // Clear all cached resources
loader.clearAll('css'); // Clear all "css" cached resources
FAQs
loader module.
The npm package @garfish/loader receives a total of 825 weekly downloads. As such, @garfish/loader popularity was classified as not popular.
We found that @garfish/loader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.