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

validus-ui-core

v1.0.1

Published

Reusable TypeScript utilities for frontend (Mobile and Web)

Readme

🚀 Shared Utils - Reusable TypeScript Utility Library

Welcome to Shared Utils, a TypeScript-based utility package designed for frontend and backend development.

This package ensures:

  • 🎯 Maintainability – Standardized utility functions.
  • Reusability – Avoid duplicating logic across projects.
  • 🏗 Scalability – Works across different environments seamlessly.

🔧 Installation Guide

🔑 Prerequisite: Generate a GitHub Personal Access Token (PAT)

Since this package is private, you need a GitHub Personal Access Token (PAT) with the right permissions to install it.

Steps to Generate a GitHub PAT:

1️⃣ Log into GitHub 2️⃣ Navigate to Settings → Developer Settings → Personal Access Tokens 3️⃣ Click "Generate new token" 4️⃣ Select read:packages permission (and write:packages if publishing) 5️⃣ Click Generate token and copy it (it won’t be visible again!)


📥 Configure npm for GitHub Packages

Before installing, you need to authenticate using the generated token.

1️⃣ Create a .npmrc file in your project’s root folder:

//npm.pkg.github.com/:_authToken=YOUR_PERSONAL_ACCESS_TOKEN
@dev-validusfintech:registry=https://npm.pkg.github.com/

📌 Replace YOUR_PERSONAL_ACCESS_TOKEN with the token you generated.


📥 Install via npm

npm install @dev-validusfintech/validus-ui-core

📥 Install via Yarn

yarn add @dev-validusfintech/validus-ui-core

💻 Usage

Import and use the utilities in your TypeScript/JavaScript projects:

🔢 Number Utilities

import { amountInWords } from "@dev-validusfintech/validus-ui-core";

console.log(amountInWords(123)); // "One Hundred Twenty-Three"

🔤 String Utilities

import { capitalize } from "@dev-validusfintech/validus-ui-core";

console.log(capitalize("hello world")); // "Hello World"

📅 Date Utilities

import { formatDate } from "@dev-validusfintech/validus-ui-core";

console.log(formatDate(new Date(), "YYYY-MM-DD")); // "2025-02-12"

📦 Building & Testing

🚀 Build the Package

npm run build

🧪 Run Tests

npm test

📊 Versioning & Publishing

1️⃣ Ensure Clean Git State

git status
git add .
git commit -m "chore: prepare for release"

🔢 2️⃣ Version Update

📌 For a patch release (bug fixes):

npm version patch

📌 For a minor release (new features):

npm version minor

📌 For a major release (breaking changes):

npm version major

🚀 3️⃣ Push & Publish

git push origin main --follow-tags
npm publish --access=restricted

📊 Commit Guidelines

This project follows conventional commits for structured commit history:

  • 🎉 feat: New feature
  • 🐛 fix: Bug fix
  • 📖 docs: Documentation update
  • 🔄 refactor: Code restructuring
  • 🏗 build: Build system updates
  • 🏷 chore: Maintenance work
  • perf: Performance improvements
  • 🧪 test: Add/modify tests
  • 🚀 ci: CI/CD changes
  • 🎨 style: Code formatting & style

📌 Example Commit:

git commit -m "feat: add amountInWords utility function"

📜 License

This project is licensed under the MIT License. See the LICENSE file for details.


💙 Crafted with ❤️ for Developers 🚀