npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sftech/ng-shared

v1.0.2

Published

Shared Angular components, base classes, and utilities for building CRUD applications with OData support and PrimeNG.

Readme

@sftech/ng-shared

Shared Angular components, base classes, and utilities for building CRUD applications with OData support and PrimeNG.

Installation

npm install @sftech/ng-shared

Peer Dependencies

  • @angular/common >= 19.0.0
  • @angular/core >= 19.0.0
  • @fortawesome/angular-fontawesome >= 3.0.0
  • @fortawesome/free-solid-svg-icons >= 6.7.0
  • PrimeNG >= 19.0.0

Configuration

Pass your IAppConfig to modules that depend on ng-shared:

import { IAppConfig } from '@sftech/ng-shared';

export const appConfig: IAppConfig = {
    apiUrl: 'http://localhost:3000',
    baseUrl: 'http://localhost:4200',
};

Base Classes

BaseListComponent

Abstract base for paginated list views with OData support.

import { BaseListComponent } from '@sftech/ng-shared';

@Component({ ... })
export class MyListComponent extends BaseListComponent<MyModel, MyCreateDto, MyUpdateDto, MyResponseDto> {
    protected _repo = inject(MyService);
    protected _route = 'my-items';
}

Provides: data() signal, _loadData(), updateOdata(), openDisplay(), pagination via PaginatorComponent.

BaseDisplayComponent

Abstract base for detail/edit views with form handling.

import { BaseDisplayComponent } from '@sftech/ng-shared';

@Component({ ... })
export class MyDisplayComponent extends BaseDisplayComponent<MyModel, MyUpdateDto, MyUpdateDto, MyResponseDto> {
    protected override _repo = inject(MyService);
    protected override _route = 'my-items';

    protected override initializeForm(): FormGroup { ... }
    protected override getNewModel(): MyModel { ... }
    protected override mapFormToUpdateDto(): MyUpdateDto { ... }
    protected override mapFormToCreateDto(): MyCreateDto { ... }
}

Provides: model() signal, isNew() signal, submitForm(), deleteData(), goBack().

BaseDisplayModalComponent

Lightweight base for modal display components. Provides id and canEdit inputs.

BaseDbApiService

Abstract base for HTTP services with CRUD and OData support.

import { BaseDbApiService } from '@sftech/ng-shared';

@Injectable({ providedIn: 'root' })
export class MyService extends BaseDbApiService<MyModel, MyCreateDto, MyUpdateDto, MyResponseDto> {
    protected override _entityUrlPath = '/api/my-items';
    protected override _mapToModel(dto: MyResponseDto): MyModel { ... }
}

Provides: getAll(odata?), get(id), insert(dto), update(id, dto), delete(id).

BaseDialogComponent

Base for PrimeNG DynamicDialog components. Provides close(result) method and DynamicDialogRef injection.

OData Query Builder

import { Odata, OdataFilterCollection, OdataFilter, OdataPagination, ODataOrder, EFilterOperator, EFilterTypes, ESortDirection } from '@sftech/ng-shared';

const odata = new Odata();
const filter = new OdataFilterCollection();
filter.addAnd(new OdataFilter('name', 'test', EFilterOperator.CONTAINS, EFilterTypes.STRING));
odata.filter = filter;
odata.pagination = new OdataPagination(1, 10);
odata.orderBy = ODataOrder.create('name', ESortDirection.ASC);

UI Components

  • PaginatorComponent — Wraps PrimeNG paginator with OData integration
  • FormErrorDisplayComponent — Displays form validation errors
  • SidebarNavigationComponent — Sidebar layout with navigation
  • HeadMainFooterWithCanvasComponent — Header/content/footer layout
  • BaseDialogComponent — Dialog wrapper for PrimeNG DynamicDialog
  • NotPermittedComponent — 403 page

Exports

All public types are exported via @sftech/ng-shared:

  • Configuration: IAppConfig, appConfigLoader
  • DTOs: IBaseDbCreateDto, IBaseDbUpdateDto, IBaseDbResponseDto, IODataResponseDto, IApiResponseDto
  • Models: BaseDbModel, MappedApiResponse, MappedApiError, MappedOdataResponse
  • OData: Odata, OdataFilter, OdataFilterCollection, EFilterConcatenation, OdataExpands, OdataPagination, ODataOrder
  • Enums: EFilterOperator, EFilterTypes, ESortDirection
  • Services: BaseDbApiService
  • Providers: IconProvider

Development

npx nx build ng-shared
npx nx lint ng-shared

License

MIT