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

unit-convert-intl

v1.6.0

Published

Libreria que contiene un conjunto de herramientas para la conversion de unidades

Downloads

930

Readme

unit-convert-Intl

Librería que contiene un conjunto de herramientas para la conversión de unidades, mediante la API Intl.

Unit-Convert-Intl es una librería simple y eficiente que te permite realizar conversiones entre diversas unidades de medida. Con esta herramienta podrás convertir distancias, masas y ahora volúmenes entre unidades comunes de manera sencilla y directa.

Novedades en la versión 1.6.0

¡Nuevo! Esta versión introduce soporte para la conversión de unidades de Tiempo. Ahora puedes trabajar con unidades como:

  • Year
  • Millisecond
  • Minute

Versión 1.5.0

Esta versión introduce soporte para la conversión de unidades de Almacenamiento en Base 10. Ahora puedes trabajar con unidades como:

  • Bit
  • Megabyte
  • Terabyte

Estas nuevas funciones permiten realizar conversiones precisas y personalizadas, adaptándose al formato y configuración regional del usuario.

Versión 1.4.0

Esta versión introduce soporte para la conversión de unidades de Temperatura.

  • Kelvin
  • Fharenheit
  • Celsius

Versión 1.3.0

Esta versión introduce soporte para la conversión de unidades de velocidad. Ahora puedes trabajar con unidades como:

  • KilometerPerHour
  • MeterPerHour
  • MeterPerSecond

Versión 1.2.0

Esta versión introduce soporte para la conversión de unidades de volumenes. Ahora puedes trabajar con unidades como:

  • Cubic Meter («metro cúbico»)
  • Pint («pinta»)
  • Cup («taza»)
  • Tablespoon («cucharada»)

Versión 1.1.0

La versión 1.1.0 incluye funciones para realizar conversiones de masas además de las de distancia presentes en versiones anteriores:

  • Kilogram
  • Gram
  • Ton
  • Milligram
  • Microgram
  • Pound
  • Stone
  • Ounce

Versión 1.0.4

La versión 1.0.4 incluye funciones para realizar conversiones de distancia:

  • Yard
  • Mile
  • Kilometer
  • Centimeter
  • Inch

Instalación

Para instalar la librería, usa npm:

npm install unit-convert-Intl

Uso General

A continuación se muestra un ejemplo general del uso de las funciones de conversión:

import { Yard, Kilometer, Gram } from 'unit-convert-Intl';

// Convertir Yardas a metros
const metersFromYard = Yard.toMeter(5, { locale: 'es-ES', unitDisplay: 'long' });
console.log(`${5} yardas son ${metersFromYard}`);

// Convertir Millas a kilómetros
const kilometersFromMile = Kilometer.toMile(3);
console.log(`${3} kilómetros son ${kilometersFromMile} millas`);

// Convertir gramos a kilogramos
const kilogramsFromGram = Gram.toKilogram(1000);
console.log(`${1000} gramos son ${kilogramsFromGram} kilogramos`);

Contribución

Si deseas contribuir al proyecto, por favor abre un "issue" o "pull request" con tus cambios o sugerencias. ¡Tu ayuda será bienvenida!

Licencia

Este proyecto está bajo la MIT License. Consulta el archivo LICENSE para más detalles.