New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@garfish/loader

Package Overview
Dependencies
Maintainers
8
Versions
367
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@garfish/loader

loader module.

0.0.9-alpha.13
Source
npm
Version published
Maintainers
8
Created
Source

@garfish/loader

TODO: Garfish loader

Usage

import Loader from '@garfish/loader';

const loader = new Loader({
  maxSize: 10 * 1024 * 1024, // default number is "10 * 1024 * 1024"
});

// beforeLoad
loader.lifecycle.beforeLoad.add(({ url, config }) => {
  // You can changed the request config
  if (url.includes('xx')) {
    url = url.replace('xx', '');
  }
  return { url, config };
});

// loaded
loader.lifecycle.loaded.add((data) => {
  const { result, value } = data;
  data.n = 1;
  return data;
});

loader.lifecycle.loaded.add((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('appName', 'https://xxx').then((result) => {
  console.log(result); // 2
});

Clear cache

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

Keywords

garfish

FAQs

Package last updated on 18 Jun 2021

Did you know?

Socket

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.

Install

Related posts