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 🙏

© 2025 – Pkg Stats / Ryan Hefner

zm-careers-lib

v2.4.5

Published

An Angular library for building career sites and job portals with comprehensive job search, application, and management capabilities.

Downloads

819

Readme

ZM Career Sites Library (zm-careers-lib)

An Angular library for building career sites and job portals with comprehensive job search, application, and management capabilities.

Overview

The ZM Career Sites Library provides a complete set of components and services for building career sites and job portals. It includes features for job searching, filtering, application submission, resume parsing, and more. This library is designed to integrate seamlessly with backend job management systems.

Features

  • Job Search & Discovery

    • Advanced search functionality with keyword, location, and filter options
    • Faceted search with multiple filter options
    • Elasticsearch integration
    • Job recommendations based on user profiles
    • "Find Your Spot" guided job discovery
  • Job Application

    • Comprehensive job application forms
    • Resume upload and parsing
    • Custom application fields
    • Job-specific questions
    • Application confirmation
  • UI Components

    • Responsive job listings
    • Job detail views
    • Pagination
    • Filter chips
    • Loading indicators
  • Integration

    • API endpoints for job data
    • Tenant management
    • reCAPTCHA integration
    • File upload configuration

Installation

npm install zm-careers-lib

Requirements

This library requires the following peer dependencies:

"peerDependencies": {
  "@angular/common": "^15.1.0",
  "@angular/core": "^15.1.0",
  "bootstrap": "^5.3.0-alpha3",
  "ng-recaptcha": "^11.0.0",
  "ngx-mat-select-search": "^7.0.5"
}

Usage

Module Import

Import the ZmCareerSitesLibModule in your application module:

import { ZmCareerSitesLibModule } from 'zm-careers-lib';

@NgModule({
  imports: [
    ZmCareerSitesLibModule,
    // other imports
  ],
  // ...
})
export class AppModule { }

Components

The library provides the following components:

  • SearchComponent - Job search form
  • JobsListComponent - List of job postings
  • JobsListEsComponent - Elasticsearch-based job listing
  • JobComponent - Individual job card
  • FacetsComponent - Search facets/filters
  • PaginationComponent - Pagination controls
  • FindYourSpotComponent - Guided job discovery
  • RecommendedJobsComponent - Job recommendations
  • UploadResumeComponent - Resume upload
  • JobApplyComponent - Job application form
  • JobViewComponent - Job details view
  • ApplyConfirmationComponent - Application confirmation
  • JobRecommendationComponent - Job recommendations
  • FilterChipsComponent - Selected filter display
  • InitialComponent - Initial landing component
  • CustomApplyComponent - Custom application form

Example

Basic job search and listing:

<zm-search></zm-search>
<zm-filter-chips></zm-filter-chips>
<zm-facets></zm-facets>
<zm-jobs-list></zm-jobs-list>
<zm-pagination></zm-pagination>

Job application flow:

<zm-job-view></zm-job-view>
<zm-job-apply></zm-job-apply>
<zm-apply-confirmation></zm-apply-confirmation>

Services

The library provides several services:

  • EndpointsService - API endpoints for job data
  • CommonService - Utility functions
  • DataStoreService - State management
  • ServerApiService - Server API configuration

Configuration

Configure the API endpoints in your application:

import { ServerApiService } from 'zm-careers-lib';

// In your app initialization
constructor(private serverApi: ServerApiService) {
  this.serverApi.API_LIST.serverHostUrl = 'https://your-api-endpoint.com';
  this.serverApi.API_LIST.tenantApiUrl = 'https://your-tenant-api.com';
}

Building the Library

ng build zm-career-sites-lib

Publishing

cd dist/zm-career-sites-lib
npm publish

Development

This project was generated with Angular CLI version 15.1.5.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory.

Running unit tests

Run ng test to execute the unit tests via Karma.

License

Proprietary - All Rights Reserved

Support

For issues and feature requests, please contact the development team.


Technical Documentation Summary

Project Structure

  • Angular Library: Built with Angular 15.1.0
  • Published Package: Available as zm-careers-lib on npm (currently at version 1.9.0)
  • Components: 16+ specialized components for job search and application
  • Services: API endpoints, data management, and utility services

Key Components

  1. Search Components

    • Search forms with keyword and location filters
    • Faceted search with multiple filter options
    • Filter chips for selected criteria
  2. Job Listing Components

    • Standard and Elasticsearch-based job listings
    • Individual job cards with details
    • Pagination for result navigation
  3. Job Application Components

    • Resume upload with parsing
    • Custom application forms
    • Job-specific questions
    • Application confirmation
  4. Job Discovery Components

    • "Find Your Spot" guided job discovery
    • Job recommendations based on profiles

Services

  1. EndpointsService

    • API endpoints for job search, application, and data retrieval
    • Tenant management integration
    • reCAPTCHA integration
  2. DataStoreService

    • State management for application data
    • Caching and data persistence
  3. CommonService

    • Utility functions for data transformation
    • Form data handling
  4. ServerApiService

    • Server API configuration
    • API endpoint management

Integration Points

  • Backend job management systems
  • Tenant management systems
  • reCAPTCHA for form security
  • File upload and parsing services