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

@feedmepos/mf-hrm-portal

v1.1.0-beta.2

Published

A Vue 3 + TypeScript Human Resource Management portal application built as a microfrontend. This application provides comprehensive HR management features including employee management, role management, team management, and timesheet tracking.

Readme

HRM Portal

A Vue 3 + TypeScript Human Resource Management portal application built as a microfrontend. This application provides comprehensive HR management features including employee management, role management, team management, and timesheet tracking.

Architecture

This is a microfrontend application that exports as an NPM package and can be consumed by other applications. It uses:

  • Framework: Vue 3 with Composition API
  • Build Tool: Vite
  • Language: TypeScript
  • State Management: Pinia
  • Styling: Tailwind CSS
  • Routing: Vue Router 4
  • Internationalization: Vue I18n
  • Backend Communication: Axios with REST APIs

Prerequisites

  • Node.js: v20 or higher
  • pnpm: v9 or higher
  • Access to FeedMe's private packages: Requires authentication tokens for GitHub Packages

Environment Variables

Create a .env file in the apps/hrm-portal directory with the following variables:

# FeedMe Client ID for authentication
VITE_FEED_ME_CLIENT_ID=your_client_id_here

# Backend API URL (optional, defaults to FeedMe's base client)
VITE_PORTAL_BACKEND_URL=https://your-backend-api-url.com

Local Development

1. Install Dependencies

From the project root, install all dependencies:

pnpm install

2. Start Development Server

Run the development server for the HRM portal:

# From project root
pnpm portal:dev

# Or from apps/hrm-portal directory
cd apps/hrm-portal
pnpm dev

The application will be available at http://localhost:5173 (default Vite port).

3. Type Checking and Linting

# Type checking
pnpm type-check

# Linting and auto-fix
pnpm lint

# Code formatting
pnpm format

Deployment

Manual Deployment

  1. Update Version: Update the version in apps/hrm-portal/package.json

  2. Build Package:

    pnpm build-only
  3. Publish to NPM/Github:

    pnpm publish-npm
    
    pnpm publish-github

    Or for beta releases:

    pnpm publish-npm:beta
    
    pnpm publish-github:beta

CI/CD Deployment

The application uses GitHub Actions for automated deployment:

  • Development: Triggered manually via publish-hrm-portal-dev.yml
  • Production: Triggered manually via publish-hrm-portal-prod.yml

Both workflows use the reusable workflow publish-hrm-portal-reusable.yml which:

  1. Updates the package version (auto-increment or manual)
  2. Builds the package
  3. Publishes to GitHub Packages
  4. Publishes to NPM registry
  5. Update package version in /portal/ci/{environment}/package_versions.json for invalidating cloudflare.

Required Secrets

For CI/CD deployment, the following GitHub secrets are required:

  • MEBOT_GITHUB_PACKAGES - GitHub token for accessing private packages
  • MEBOT_NPM_PACKAGES - NPM token for publishing packages

These secrets are set in github Org level, for local development, you would need either add

  • .npmrc (local to project folder), or
  • ~/.npmrc (available for all other project)
@feedmepos:registry https://npm.pkg.github.com/=true

//npm.pkg.github.com/:_authToken=xxx (create personal access token (classic))
//registry.npmjs.org/:_authToken=xxx (get token from security team)