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

@javiert.dev/essentials

v1.0.0

Published

A library with a variety of useful functions that I consider essential in most web development projects

Readme

@javiert.dev/essentials

Lee esto en español.

Tired of writing the same code over and over for common tasks in your web projects? Looking for ways to speed up your development without sacrificing quality?

jtEssentials is your answer.

It's your essential toolbox with a collection of functions and utilities that will help you optimize your workflow. From string manipulation to theme management, languages, data generation, encryption, decryption, and much, much more, this package is designed to make your life easier in the world of web development.

[!NOTE] This project is made with TypeScript and includes the interfaces and typing of the functions.

Documentation

Documentation Ready to simplify your web development and unleash your full potential? 🚀

jtEssentials is not just a collection of functions; they are the tools that will make you code faster, cleaner, and more efficiently. But to discover how each of these fascinating functions can transform your workflow and solve those common headaches... you have to explore them in depth!

Dive into the Project Wiki. There awaits the complete guide, practical examples, and all the secrets to mastering jtEssentials like a true professional.

Installation

Installation Getting started with jtEssentials is quick and easy! You just need a package manager like npm, yarn, or pnpm. If you already have one installed, simply run one of the following commands in the root of your project:

npm install @javiert.dev/essentials
yarn add @javiert.dev/essentials
pnpm add @javiert.dev/essentials

And that's it! You now have jtEssentials installed and ready to take your projects to the next level!

[!TIP] jtSnippets supports this project! jtSnippets

Examples

Examples

Here I show you examples of a few of the many utilities this library can offer you.

import jtEssentials from '@javiert.dev/essentials';

let textCapitalized = jtEssentials.text.capitalize('hola mundito, ¿cómo está todo?',true);
//output: Hola Mundito, ¿Cómo Está Todo?

let textCapitalized2 = jtEssentials.text.capitalize('¿qué sucede?');
//output: ¿Qué sucede?

let textCamelCase = jtEssentials.text.camelCase('hola mundazo');
//output: HolaMundazo

// Convierte a string casi cualquier variable, puede ser un objeto, array, string, number (Y lo puedes cifrar).
let dataStringified = jtEssentials.data.stringify({name:'Javiert', hobby:'Programar'},'ClaveDeCifrado');
//output (string): U2FsdGVkX1+0v...

// Luego lo puedes regresar al mismo tipo de dato que fue alguna vez (Y decifrar).
let result = jtEssentials.data.parse(dataStringified,'ClaveDeCifrado');
//output: (object): {name:'Javiert', hobby:'Programar'}

// Generadores
let loremIpsum = jtEssentials.gen.loremIpsum(100); //Cantidad de palabras
//output: Volutpat pharetra blandit cras suspendisse quisque ac volutpat a amet accumsan, proin per...

let password = jtEssentials.gen.password(12);
//output: hqav86b2th7

Remember to check the documentation for more details on each incredible utility and its options. Your creativity will be the limit.

External Dependencies

  • crypto-js: For encrypting and decrypting data.