
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
@skeletonizer/angular
Advanced tools
This is the Angular adapter for Skeletonizer. It provides a simple way to create skeletonized views for your Angular application.

Example app on Stackblitz for Angular can be found here
To install the package, run the following command:
npm install @skeletonizer/angular @skeletonizer/utils --save
@skeletonizer/angular is always used in conjunction with @skeletonizer/utils. The @skeletonizer/utils package provides the core functionality for creating skeletonized views, while the @skeletonizer/angular package provides the Angular-specific functionality. The versions should always match.
Generally speaking, all you need to do to use the skeletonizer in the template, is to wrap the part of the template you wish to skeletonize in the <skeletonizer-skeleton> component and in a <ng-template let-foo> (all examples henceforth assume foo is called context). The skeletonConfig, showSkeleton and scope properties must be passed to the <skeletonizer-skeleton> as inputs.
Furthermore, all the data that you wish to access in the skeletonized part of the template must be accessed through the proxy(context) method, except the data that you provide and is available even whilst the data is being loaded (ie. [showSkeleton]="true")..
As far as the template goes, it essentially means transforming the code from this:
<div>{{ somePropOrMethodCallAvailableAsync }}</div>
<div>{{ someAlreadyHardCodedOrInputBoundPropAvailableSync }} </div>
into this:
<skeletonizer-skeleton [showSkeleton]="showSkeleton" [config]="skeletonConfig" [scope]="{ somePropOrMethodCallAvailableAsync } ">
<ng-template let-context>
<div>{{ proxy(context).somePropOrMethodCallAvailableAsync }}</div>
<div>{{ someAlreadyHardCodedOrInputBoundPropAvailableSync }} </div>
</ng-template>
</skeletonizer-skeleton>
As long as the shape of the properties you access within the skeleton part of the template matches the shape of the data you provide in the scope and skeletonConfig properties, the skeletonized view will be in sync with the actual view, regardless of changes to the design.
You can use Skeletonizer either in a standalone component or in a component that is a part of a module.
If you wish to use Skeletonizer in a standalone component, you need to add SkeletonizerSkeletonComponent in the imports of the component.
The usage in a component that is a part of a module is the same as the standalone component, but you need to add SkeletonizerSkeletonComponent in the imports of the module where the component is declared.
Every component that uses Skeletonizer should extend SkeletonAbstractComponent, which is available in @skeletonizer/angular.
The SkeletonAbstractComponent requires you to pass a type argument that represents the data model of the part(s) of the component that you intend to skeletonize.
It also requires you to implement the skeletonConfig (type validated against the type argument you pass to SkeletonAbstractComponent) and showSkeleton properties which must be passed to the SkeletonizerSkeletonComponent as inputs.
Note: In Angular, both skeletonConfig and showSkeleton should be Signal types to take advantage of Angular's reactive primitives:
skeletonConfig should be a Signal<TSchemaConfig<T>> (can be WritableSignal if you need to modify it)showSkeleton should be a WritableSignal<boolean> or Signal<boolean>. Use .set() to update its valueskeletonConfig() and showSkeleton()
Alternatively, you can import SkeletonAbstractComponent from @skeletonizer/utils and use non-reactive types, but this is not recommended.By extending the SkeletonAbstractComponent, you also get access to the proxy method via which you can (type) safely access props and methods within the skeletonized part of the current component.
In the skeletonized part of the template, you must access the data through the proxy(context) method.
You can think of proxy(context) in the same way as you would think of this in a class method (or in the template, where the this is usually omitted when accessing props / methods and we usually call foo instead of this.foo). The only difference is that when using proxy(context), the content-projected template will use the mocked values when the showSkeleton is true, and resolved values when showSkeleton is false - all while maintaining the type safety.
For more details about the SkeletonAbstractComponent, see the SkeletonAbstractComponent section.
For more details about the SchemaItem property, see the SchemaItem section.
For more details about the skeletonConfig property, see the TSchemaConfig section.
import { Component, signal, Signal, WritableSignal } from '@angular/core';
import { SkeletonizerSkeletonComponent, SkeletonAbstractComponent } from '@skeletonizer/angular';
import { SchemaItem, TSchemaConfig } from '@skeletonizer/utils';
import { DomSanitizer } from '@angular/platform-browser';
interface IResource {
title: string;
link: string;
svg: string;
}
// the svgs are just for the sake of the example
const learnNgSvg: string = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></svg>';
const cliDocsSvg: string = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/></svg>';
const loadingSvg: string = '<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><style>.spinner{transform-origin:center;animation:spinner .75s linear infinite}@keyframes spinner{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}</style><g class="spinner"><circle cx="12" cy="2.5" r="1.5" opacity=".14"/><circle cx="16.75" cy="3.77" r="1.5" opacity=".29"/><circle cx="20.23" cy="7.25" r="1.5" opacity=".43"/><circle cx="21.50" cy="12.00" r="1.5" opacity=".57"/><circle cx="20.23" cy="16.75" r="1.5" opacity=".71"/><circle cx="16.75" cy="20.23" r="1.5" opacity=".86"/><circle cx="12" cy="21.5" r="1.5"/></g></svg>';
type TSkeletonizedPart = Pick<AppComponent, 'resources' | 'otherPropWeWantToUseInSkeletonizedPart'>;
@Component({
selector: 'my-component',
template: `
<h2>{{ pageTitle }}</h2>
<skeletonizer-skeleton [showSkeleton]="showSkeleton()" [config]="skeletonConfig()" [scope]="{ resources, otherPropWeWantToUseInSkeletonizedPart }">
<ng-template let-context>
<span>{{ proxy(context).otherPropWeWantToUseInSkeletonizedPart }}</span>
@for (resource of proxy(context).resources; track $index) {
<a target="_blank" rel="noopener" [href]="resource.link">
<div [innerHTML]="sanitizer.bypassSecurityTrustHtml(resource.svg)"></div>
<span>{{ resource.title }}</span>
</a>
}
</ng-template>
</skeletonizer-skeleton>
`,
styleUrls: ['./my-component.component.scss'],
// for standalone components, otherwise add SkeletonizerSkeletonComponent to the module imports of the module where MyComponent is declared
// standalone: true,
// imports: [SkeletonizerSkeletonComponent],
})
export class MyComponent extends SkeletonAbstractComponent<TSkeletonizedPart> implements OnInit {
public pageTitle: string = 'Some prop that we do not wish to skeletonize, but wish to use in the view nonetheless';
public otherPropWeWantToUseInSkeletonizedPart: string = 'angular';
public resources: IResource[] = [];
public showSkeleton: WritableSignal<boolean> = signal(true);
public readonly skeletonConfig: Signal<TSchemaConfig<TSkeletonizedPart>> = signal({
repeat: 1,
schemaGenerator: () => ({
otherPropWeWantToUseInSkeletonizedPart: new SchemaItem<string>().words(3),
// Array.from({ length: 5 }, () => ({ ... })) is just a simple way of creating an array of 5 objects - you could also hardcode the array if you wanted to
resources: Array.from({ length: 5 }, () => ({
title: new SchemaItem<string>().words(3),
link: new SchemaItem().identical('https://www.google.com'),
svg: new SchemaItem().identical(loadingSvg),
})),
}),
});
public constructor(
public readonly sanitizer: DomSanitizer,
) {
super();
}
public ngOnInit(): void {
// simulate loading data
setTimeout(() => {
this.resources = [
{
title: 'Mocked Resolved Resource #1',
link: 'https://github.com/lukaVarga/skeletonizer/tree/main/packages/angular/projects/skeletonizer',
svg: learnNgSvg,
},
{
title: 'Mocked Resolved Resource #2',
link: 'https://github.com/lukaVarga/skeletonizer/tree/main',
svg: cliDocsSvg,
},
];
this.otherPropWeWantToUseInSkeletonizedPart = 'loaded title'
this.showSkeleton.set(false);
}, Math.max(3_000, Math.random() * 10_000));
}
}
You can also skeletonize multiple independent parts (ie. parts for which the data gets loaded independently of each-other) of the same component by using the <skeletonizer-skeleton> multiple times in the template. Each skeletonizer-skeleton component should, in this case, receive its own showSkeleton input property, while the config and the scope can be shared for all of them. That way, the config is defined in a single place and all skeletonized parts enjoy the same level of type safety via the known proxy(context) method.
You can also provide separate config and scope for each skeletonizer-skeleton component if needed, although it is recommended that you do not extend SkeletonAbstractComponent in this case, and you will need to provide your own (separate) proxy-like methods for each of the skeletonized parts of the component to maintain the same level of type safety in the template.
import { Component, signal, Signal, WritableSignal } from '@angular/core';
import { SkeletonizerSkeletonComponent, SkeletonAbstractComponent } from '@skeletonizer/angular';
import { SchemaItem, TSchemaConfig } from '@skeletonizer/utils';
import { DomSanitizer } from '@angular/platform-browser';
interface IResource {
title: string;
link: string;
svg: string;
}
// the svgs are just for the sake of the example
const learnNgSvg: string = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></svg>';
const loadingSvg: string = '<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><style>.spinner{transform-origin:center;animation:spinner .75s linear infinite}@keyframes spinner{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}</style><g class="spinner"><circle cx="12" cy="2.5" r="1.5" opacity=".14"/><circle cx="16.75" cy="3.77" r="1.5" opacity=".29"/><circle cx="20.23" cy="7.25" r="1.5" opacity=".43"/><circle cx="21.50" cy="12.00" r="1.5" opacity=".57"/><circle cx="20.23" cy="16.75" r="1.5" opacity=".71"/><circle cx="16.75" cy="20.23" r="1.5" opacity=".86"/><circle cx="12" cy="21.5" r="1.5"/></g></svg>';
type TSkeletonizedPart = Pick<AppComponent, 'resources' | 'otherPropWeWantToUseInSkeletonizedPart'>;
@Component({
selector: 'my-component',
template: `
<h2>{{ pageTitle }}</h2>
<skeletonizer-skeleton [showSkeleton]="showSkeleton()" [config]="skeletonConfig()" [scope]="{ resources, otherPropWeWantToUseInSkeletonizedPart }">
<ng-template let-context>
@for (resource of proxy(context).resources; track $index) {
<a target="_blank" rel="noopener" [href]="resource.link">
<div [innerHTML]="sanitizer.bypassSecurityTrustHtml(resource.svg)"></div>
<span>{{ resource.title }}</span>
</a>
}
</ng-template>
</skeletonizer-skeleton>
<skeletonizer-skeleton [showSkeleton]="showOtherSkeleton()" [config]="skeletonConfig()" [scope]="{ resources, otherPropWeWantToUseInSkeletonizedPart }">
<ng-template let-context>
<span>{{ proxy(context).otherPropWeWantToUseInSkeletonizedPart }}</span>
</ng-template>
</skeletonizer-skeleton>
`,
styleUrls: ['./my-component.component.scss'],
// for standalone components, otherwise add SkeletonizerSkeletonComponent to the module imports of the module where MyComponent is declared
// standalone: true,
// imports: [SkeletonizerSkeletonComponent],
})
export class MyComponent extends SkeletonAbstractComponent<TSkeletonizedPart> implements OnInit {
public pageTitle: string = 'Some prop that we do not wish to skeletonize, but wish to use in the view nonetheless';
public otherPropWeWantToUseInSkeletonizedPart: string = 'angular';
public resources: IResource[] = [];
public showSkeleton: WritableSignal<boolean> = signal(true);
public showOtherSkeleton: WritableSignal<boolean> = signal(true);
public readonly skeletonConfig: Signal<TSchemaConfig<TSkeletonizedPart>> = signal({
repeat: 1,
schemaGenerator: () => ({
otherPropWeWantToUseInSkeletonizedPart: new SchemaItem<string>().words(3),
// Array.from({ length: 5 }, () => ({ ... })) is just a simple way of creating an array of 5 objects - you could also hardcode the array if you wanted to
resources: Array.from({ length: 5 }, () => ({
title: new SchemaItem<string>().words(3),
link: new SchemaItem().identical('https://www.google.com'),
svg: new SchemaItem().identical(loadingSvg),
})),
}),
});
public constructor(
public readonly sanitizer: DomSanitizer,
) {
super();
}
public ngOnInit(): void {
setTimeout(() => {
this.resources = [
{
title: 'Mocked Resolved Resource #1',
link: 'https://github.com/lukaVarga/skeletonizer/tree/main/packages/angular/projects/skeletonizer',
svg: learnNgSvg,
},
{
title: 'Mocked Resolved Resource #2',
link: 'https://github.com/lukaVarga/skeletonizer/tree/main',
svg: cliDocsSvg,
},
];
this.showSkeleton.set(false);
}, Math.max(3_000, Math.random() * 10_000));
setTimeout(() => {
this.showOtherSkeleton.set(false);
}, Math.max(6_000, Math.random() * 10_000));
}
}
Generally speaking, you shouldn't need to adjust the color scheme of the skeletonized component in most cases. However, should you need to, the color scheme of the skeletonized views can be customized by providing the colorSchema property to the SkeletonizerSkeletonComponent.
For more details about the colorSchema property, see the colorSchema section.
For Angular adapter-specific contributions, run the following commands to get started:
npm installpackages/angular directorypackages/angular/src/app directory to make sure the changes can easily be seen in the example appnpm run dev in the packages/angular directory to start the example apppackages/angular directoryBefore submitting a pull request, make sure to run the following commands in packages/angular directory:
npm run lintnpm run type-checknpm run coveragenpm run buildFAQs
The way to skeletonize your Angular components
The npm package @skeletonizer/angular receives a total of 417 weekly downloads. As such, @skeletonizer/angular popularity was classified as not popular.
We found that @skeletonizer/angular demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.