
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@getholo/apps
Advanced tools
This repository contains two example apps which use the **@getholo/framework** under the hood.
This repository contains two example apps which use the @getholo/framework under the hood.
Before importing @getholo/apps in your code, you should initialise the framework first. Within the initialisation you should set a couple of parameters for Traefik: domain, email and provider.
Afterwards you need to import the config first before importing @getholo/apps.
// config.ts
import config from '@getholo/framework/config';
// Your domain name
config.traefik.domain = 'domain.tld';
// Your email address for letsencrypt
config.traefik.email = 'user@domain.tld';
// Any Traefik V2 provider
config.traefik.provider = {
name: 'cloudflare',
env: {
CF_DNS_API_TOKEN: 'DNS:Edit token',
CF_ZONE_API_TOKEN: 'Zone:Read token'
}
};
// index.ts
import './config';
import apps from '@getholo/apps';
async function main() {
const { sonarr, traefik } = apps;
await traefik.remove();
await sonarr.remove();
await traefik.pull();
await sonarr.pull();
await traefik.create();
await sonarr.create();
await traefik.start();
await sonarr.start();
}
main();
This is just an example on how to use the @getholo/framework. I recommend you to fork this repository and add your own apps to explore the full capabilities of the framework.
FAQs
This repository contains two example apps which use the **@getholo/framework** under the hood.
We found that @getholo/apps 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.