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

stringify-pro

v1.0.0

Published

Advanced string manipulation library with TypeScript support

Readme

Stringify Pro

npm version License: MIT TypeScript

A powerful TypeScript/JavaScript string manipulation library providing a comprehensive suite of string operations with robust error handling and type safety.

Why Stringify Pro?

  • 🔒 Type Safety: Full TypeScript support with proper type definitions
  • 🛡️ Error Handling: Robust error handling with custom error types
  • 🚀 Performance: Optimized for performance with minimal dependencies
  • 💪 Reliability: Comprehensive test coverage
  • 🔧 Flexibility: Extensive configuration options for each operation

Installation

npm install stringify-pro

or

yarn add stringify-pro

Quick Start

import { stringUtils, CaseType, HashType } from 'stringify-pro';

// Case conversion
const camelCase = stringUtils.convertCase('hello-world', CaseType.CAMEL);
console.log(camelCase); // 'helloWorld'

// Secure password hashing
const hashedPassword = await stringUtils.hashWithSalt('myPassword');
const isValid = await stringUtils.verifyHash('myPassword', hashedPassword);

// Generate secure random string
const randomStr = stringUtils.randomString(12, {
  numbers: true,
  symbols: true,
  uppercase: true
});

// Create URL-friendly slug
const slug = stringUtils.slugify('Hello & World!'); // 'hello-world'

Core Features

Case Conversion

// Capitalization
stringUtils.capitalize('hello world'); // 'Hello world'

// Case conversion
stringUtils.convertCase('hello-world', CaseType.CAMEL);  // 'helloWorld'
stringUtils.convertCase('hello world', CaseType.PASCAL); // 'HelloWorld'
stringUtils.convertCase('helloWorld', CaseType.SNAKE);   // 'hello_world'
stringUtils.convertCase('Hello World', CaseType.KEBAB);  // 'hello-kebab'

String Analysis

// Word counting
stringUtils.wordCount('hello beautiful world'); // 3

// Palindrome checking
stringUtils.isPalindrome('A man a plan a canal Panama'); // true

// String similarity (0-100)
stringUtils.similarity('hello', 'hallo'); // 80

Security Functions

// Secure random string generation
const password = stringUtils.randomString(16, {
  numbers: true,
  symbols: true,
  uppercase: true,
  lowercase: true
});

// Hashing
const hash = stringUtils.hash('password', HashType.SHA256);

// Salted hashing
const hashedPassword = await stringUtils.hashWithSalt('password');
const isValid = await stringUtils.verifyHash('password', hashedPassword);

Text Processing

// Clean text
stringUtils.removeSpecialChars('hello@world!'); // 'helloworld'
stringUtils.trimExtraSpaces('hello   world  '); // 'hello world'

// Encoding
const encoded = stringUtils.base64Encode('Hello World');
const decoded = stringUtils.base64Decode(encoded);

// URL-friendly slugs
stringUtils.slugify('Hello & World!', {
  lowercase: true,
  removeStopWords: true
}); // 'hello-world'

API Documentation

Types and Interfaces

enum CaseType {
  CAMEL = 'camel',
  PASCAL = 'pascal',
  SNAKE = 'snake',
  KEBAB = 'kebab'
}

enum HashType {
  MD5 = 'md5',
  SHA256 = 'sha256',
  SHA512 = 'sha512'
}

interface RandomStringOptions {
  numbers?: boolean;
  symbols?: boolean;
  uppercase?: boolean;
  lowercase?: boolean;
}

interface SlugifyOptions {
  lowercase?: boolean;
  separator?: string;
  removeStopWords?: boolean;
}

Error Handling

The library provides custom error types for better error handling:

try {
  const result = stringUtils.base64Decode('invalid-base64');
} catch (error) {
  if (error instanceof ValidationError) {
    console.log('Input validation failed:', error.message);
  } else if (error instanceof CryptoError) {
    console.log('Cryptographic operation failed:', error.message);
  }
}

Development

Setup

git clone https://github.com/venkatesh261/stringify-pro.git
cd stringify-pro
npm install

Testing

npm run test        # Run tests
npm run test:watch  # Run tests in watch mode
npm run test:coverage # Run tests with coverage

Building

npm run build   # Build library
npm run lint    # Run linter

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

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

Author

Venkat - [email protected]

Support

If you find this library helpful, please consider:

  • Starring the GitHub repository
  • Reporting issues
  • Contributing to the codebase
  • Sharing with others