https://github.com/rahulthedevil/metric-converter
A simple utility package for converting between metric units such as meters, kilometers, grams, kilograms, liters, and more. Simple and powerful way for Units Convert solution
https://github.com/rahulthedevil/metric-converter
convert converter data fraction imperial length mass measurements metric metrics ratio system temperature unit unit-conversion unit-converter units uom utilities weight
Last synced: about 1 month ago
JSON representation
A simple utility package for converting between metric units such as meters, kilometers, grams, kilograms, liters, and more. Simple and powerful way for Units Convert solution
- Host: GitHub
- URL: https://github.com/rahulthedevil/metric-converter
- Owner: rahulthedevil
- License: mit
- Created: 2024-02-20T19:57:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-29T12:48:17.000Z (over 1 year ago)
- Last Synced: 2025-09-20T08:40:41.586Z (about 2 months ago)
- Topics: convert, converter, data, fraction, imperial, length, mass, measurements, metric, metrics, ratio, system, temperature, unit, unit-conversion, unit-converter, units, uom, utilities, weight
- Language: JavaScript
- Homepage:
- Size: 195 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Metric Converter
## Description
Metric Converter is an npm package that provides a comprehensive set of functions to easily convert between different units of measurement in the metric system. It offers converters for length, mass, volume, and more, making it a versatile tool for various conversion needs.
## Installation
To install Metric Converter, you can use npm:
```bash
npm install metric-converter
```
## Usage
### Basic Usage
To use Metric Converter, you can follow these steps:
Import the module:
```bash
import MetricConverter from 'metric-converter';
```
Perform conversions as needed. Here's an example converting length from meters to centimeters:
```bash
const lengthInMeters = 5;
const lengthInCentimeters = MetricConverter(lengthInMeters).from('m').to('cm');
console.log(`${lengthInMeters} meters is ${lengthInCentimeters} centimeters`);
```
Supported Units
Metric Converter supports a variety of units for length, mass, volume, and more. Here are the supported units:
Length
- meter (m) - `m`
- centimeter (cm) - `cm`
- kilometer (km) - `km`
- decimeter (dm) - `dm`
- millimeter (mm) - `mm`
- micrometer (µm) - `micrometer`
- nanometer (nm) - `nanometer`
- light year (light year) - `light_year`
- exameter (exameter) - `exameter`
- petameter (petameter) - `petameter`
- terameter (terameter) - `terameter`
- gigameter (gigameter) - `gigameter`
- megameter (megameter) - `megameter`
- hectometer (hectometer) - `hectometer`
- dekameter (dekameter) - `dekameter`
- micron (µ) - `micron`
- picometer (pm) - `picometer`
- femtometer (fm) - `femtometer`
- attometer (am) - `attometer`
- megaparsec (megaparsec) - `megaparsec`
- kiloparsec (kiloparsec) - `kiloparsec`
- parsec (parsec) - `parsec`
- astronomical unit (astronomical unit) - `astronomical_unit`
- league (league) - `league`
- nautical league (UK) (nautical league (UK)) - `nautical_league_uk`
- nautical league (int.) (nautical league (int.)) - `nautical_league_int`
- league (statute) (league (statute)) - `league_statute`
- nautical mile (UK) (nautical mile (UK)) - `nautical_mile_uk`
- nautical mile (international) (nautical mile (international)) - `nautical_mile_int`
- mile (statute) (mile (statute)) - `mile_statute`
- mile (US survey) (mile (US survey)) - `mile_us_survey`
- mile (Roman) (mile (Roman)) - `mile_roman`
- kiloyard (kiloyard) - `kiloyard`
- furlong (furlong) - `furlong`
- furlong (US survey) (furlong (US survey)) - `furlong_us_survey`
- chain (chain) - `chain`
- chain (US survey) (chain (US survey)) - `chain_us_survey`
- rope (rope) - `rope`
- rod (rod) - `rod`
- rod (US survey) (rod (US survey)) - `rod_us_survey`
- perch (perch) - `perch`
- pole (pole) - `pole`
- fathom (fathom) - `fathom`
- fathom (US survey) (fathom (US survey)) - `fathom_us_survey`
- ell (ell) - `ell`
- foot (US survey) (foot (US survey)) - `foot_us_survey`
- link (link) - `link`
- link (US survey) (link (US survey)) - `link_us_survey`
- cubit (UK) (cubit (UK)) - `cubit_uk`
- hand (hand) - `hand`
- span (cloth) (span (cloth)) - `span_cloth`
- finger (cloth) (finger (cloth)) - `finger_cloth`
- nail (cloth) (nail (cloth)) - `nail_cloth`
- inch (US survey) (inch (US survey)) - `inch_us_survey`
- barleycorn (barleycorn) - `barleycorn`
- mil (mil) - `mil`
- microinch (microinch) - `microinch`
- angstrom (angstrom) - `angstrom`
- A.U. of length (A.U. of length) - `au_of_length`
- X-Unit (X-Unit) - `x_unit`
- fermi (fermi) - `fermi`
- arpent (arpent) - `arpent`
- pica (pica) - `pica`
- point (point) - `point`
- twip (twip) - `twip`
- aln (aln) - `aln`
- famn (famn) - `famn`
- caliber (caliber) - `caliber`
- centiinch (centiinch) - `centiinch`
- ken (ken) - `ken`
- Russian Archin (russian archin) - `russian_archin`
- Roman Actus (roman actus) - `roman_actus`
- Vara de Tarea (vara de tarea) - `vara_de_tarea`
- Vara Conuquera (vara conuquera) - `vara_conuquera`
- Vara Castellana (vara castellana) - `vara_castellana`
- cubit (Greek) (cubit (Greek)) - `cubit_greek`
- long reed (long reed) - `long_reed`
- reed (reed) - `rd`
- long cubit (long cubit) - `long_cubit`
- handbreadth (handbreadth) - `hbr`
- fingerbreadth (fingerbreadth) - `fbr`
- planck length (planck length) - `pl`
- electron radius (classical) (electron radius (classical)) - `erc`
- bohr radius (bohr radius) - `br`
- earth's equatorial radius (earth's equatorial radius) - `eer`
- earth's polar radius (earth's polar radius) - `per`
- earth's distance from sun (earth's distance from sun) - `eds`
- sun's radius (sun's radius) - `sr`
Mass
- Kilogram (kg) - `kg`
- Gram (g) - `g`
- Milligram (mg) - `mg`
- Metric Ton (t) - `t`
- Carat (ct) - `ct`
- Atomic Mass Unit (u) - `u`
- Exagram (Eg) - `Eg`
- Petagram (Pg) - `Pg`
- Teragram (Tg) - `Tg`
- Gigagram (Gg) - `Gg`
- Megagram (Mg) - `Mg`
- Hectogram (hg) - `hg`
- Dekagram (dag) - `dag`
- Decigram (dg) - `dg`
- Centigram (cg) - `cg`
- Microgram (μg) - `μg`
- Nanogram (ng) - `ng`
- Picogram (pg) - `pg`
- Femtogram (fg) - `fg`
- Attogram (ag) - `ag`
- Dalton - `Dalton`
- Kilogram-force square second/meter (kgfspm) - `kgfspm`
- Kilopound (kips) - `kips`
- Pound-force square second/foot (lbfpsf) - `lbfpsf`
- Gamma (gammar) - `gammar`
- Talent (Biblical Hebrew) (talentBH) - `talentBH`
- Mina (Biblical Hebrew) (minaBH) - `minaBH`
- Shekel (Biblical Hebrew) (shekelBH) - `shekelBH`
- Bekan (Biblical Hebrew) (bekaniBH) - `bekaniBH`
- Gerah (Biblical Hebrew) (gerahBH) - `gerahBH`
- Talent (Biblical Greek) (talentBG) - `talentBG`
- Mina (Biblical Greek) (minaBG) - `minaBG`
- Tetradrachma (Biblical Greek) (tetradrachmaBG) - `tetradrachmaBG`
- Didrachma (Biblical Greek) (didrachmaBG) - `didrachmaBG`
- Drachma (Biblical Greek) (drachmaBG) - `drachmaBG`
- Denarius (Biblical Roman) (denariusBR) - `denariusBR`
- Assarion (Biblical Roman) (assarionBR) - `assarionBR`
- Quadrans (Biblical Roman) (quadransBR) - `quadransBR`
- Lepton (Biblical Roman) (leptonBR) - `leptonBR`
- Planck Mass (Planck_mass) - `Planck_mass`
- Electron Mass (rest) (Electron_mass_rest) - `Electron_mass_rest`
- Muon Mass (Muon_mass) - `Muon_mass`
- Proton Mass (Proton_mass) - `Proton_mass`
- Neutron Mass (Neutron_mass) - `Neutron_mass`
- Deuteron Mass (Deuteron_mass) - `Deuteron_mass`
- Earth's Mass (Earth_mass) - `Earth_mass`
- Sun's Mass (Sun_mass) - `Sun_mass`
- Pound (lbs) - `lbs`
- Ounce (oz) - `oz`
- Kip (kip) - `kip`
- Slug - `slug`
Temperature
- Celsius (C) - `C`
- Kelvin (K) - `K` (Celsius + 273.15)
- Fahrenheit (F) - `F`
Volume
- Cubic Meter (m³) - `m³`
- Cubic Kilometer (km³) - `km³`
- Cubic Centimeter (cm³) - `cm³`
- Cubic Millimeter (mm³) - `mm³`
- Liter (l) - `l`
- Milliliter (ml) - `ml`
- Exaliter (el) - `el`
- Petaliter (pl) - `pl`
- Teraliter (tl) - `tl`
- Gigaliter (gl) - `gl`
- Megaliter (ml) - `ml`
- Hectoliter (hl) - `hl`
- Dekaliter (dal) - `dal`
- Deciliter (dl) - `dl`
- Centiliter (cl) - `cl`
- Microliter (µl) - `µl`
- Nanoliter (nl) - `nl`
- Picoliter (pl) - `pl`
- Femtoliter (fl) - `fl`
- Attoliter (al) - `al`
- Cubic Centimeter (cc) - `cc`
- Drop (dp) - `dp`
- Barrel (oil) (bl) - `bl`
- Barrel (US) (bu) - `bu`
- Barrel (UK) (bu) - `bu`
- Gallon (US) (gu) - `gu`
- Quart (US) (qu) - `qu`
- Pint (US) (pu) - `pu`
- Cup (US) (cu) - `cu`
- Tablespoon (US) (tbu) - `tbu`
- Teaspoon (US) (tspu) - `tspu`
- Cubic Mile (mi³) - `mi³`
- Cubic Yard (yd³) - `yd³`
- Cubic Foot (ft³) - `ft³`
- Cubic Inch (in³) - `in³`
- Gallon (gal) - `gal`
- Quart (qt) - `qt`
- Pint (pt) - `pt`
- Cup (cup) - `cup`
- Fluid Ounce (fl_oz) - `fl_oz`
- Tablespoon (tbsp) - `tbsp`
- Teaspoon (tsp) - `tsp`
- Imperial Gallon (igal) - `igal`
- Imperial Quart (iqt) - `iqt`
- Imperial Pint (ipt) - `ipt`
- Imperial Fluid Ounce (ifl_oz) - `ifl_oz`
- Imperial Tablespoon (itbsp) - `itbsp`
- Imperial Teaspoon (itsp) - `itsp`
- Hundred-cubic foot (ccf) - `ccf`
- Acre-foot (acre_ft) - `ac_ft`
- Acre-foot (US survey) (acre_ft) - `ac_ft`
- Acre-inch (acre_in) - `acre_in`
Area
- Square Meter (m²) - `m2`
- Square Kilometer (km²) - `km2`
- Square Centimeter (cm²) - `cm2`
- Square Millimeter (mm²) - `mm2`
- Square Micrometer (um²) - `um2`
- Hectare (ha) - `ha`
- Are (a) - `a`
- Square Nanometer (nm²) - `nm2`
- Square Decimeter (dm²) - `dm2`
- Square Hectometer (hm²) - `hm2`
- Square Mile (mi²) - `mi2`
- Square Yard (yd²) - `yd2`
- Square Foot (ft²) - `ft2`
- Square Inch (in²) - `in2`
- Acre (ac) - `ac`
- Square Chain (ch²) - `ch2`
- Rood (rood) - `rood`
- Perch (perch) - `perch`
- Pole (pole) - `pole`
- Square Mil (mil²) - `mil2`
- Circular Mil (circular_mil) - `circular_mil`
Time
- Second (s) - `s`
- Millisecond (ms) - `ms`
- Microsecond (µs) - `µs`
- Nanosecond (ns) - `ns`
- Picosecond (ps) - `ps`
- Femtosecond (fs) - `fs`
- Attosecond (as) - `as`
- Minute (min) - `min`
- Hour (h) - `h`
- Day (d) - `d`
- Week (wk) - `wk`
- Month (mo) - `mo`
- Year (yr) - `yr`
- Decade (decade) - `decade`
- Century (century) - `century`
- Millennium (millennium) - `millennium`
Pressure
- Pascal (Pa) - `Pa`
- Kilopascal (kPa) - `kPa`
- Bar (bar) - `bar`
- Psi (psi) - `psi`
- Ksi (ksi) - `ksi`
- Standard atmosphere (atm) - `atm`
- Exapascal (EPa) - `EPa`
- Petapascal (PPa) - `PPa`
- Terapascal (TPa) - `TPa`
- Gigapascal (GPa) - `GPa`
- Megapascal (MPa) - `MPa`
- Hectopascal (hPa) - `hPa`
- Dekapascal (daPa) - `daPa`
- Decipascal (dPa) - `dPa`
- Centipascal (cPa) - `cPa`
- Millipascal (mPa) - `mPa`
- Micropascal (µPa) - `µPa`
- Nanopascal (nPa) - `nPa`
- Picopascal (pPa) - `pPa`
- Femtopascal (fPa) - `fPa`
- Attopascal (aPa) - `aPa`
- Newton/square meter (N/m²) - `N__pm2`
- Newton/square centimeter (N/cm²) - `N__pcm2`
- Newton/square millimeter (N/mm²) - `N__pmm2`
- Kilonewton/square meter (kN/m²) - `kN__pm2`
- Millibar (mbar) - `mbar`
- Microbar (µbar) - `µbar`
- Dyne/square centimeter (dyn/cm²) - `dyn__pcm2`
- Kilogram-force/square meter (kgf/m²) - `kgf__pm2`
- Kilogram-force/square centimeter (kgf/cm²) - `kgf__pcm2`
- Kilogram-force/square millimeter (kgf/mm²) - `kgf__pmm2`
- Gram-force/square centimeter (gf/cm²) - `gf__pcm2`
- Ton-force (short)/square foot (tf/ft²) - `tf__psft`
- Ton-force (short)/square inch (tf/in²) - `tf__psin2`
- Ton-force (long)/square foot (tf/ft²) - `tf__plft`
- Ton-force (long)/square inch (tf/in²) - `tf__plin2`
- Kip-force/square inch (kipf/in²) - `kipf__psin2`
- Pound-force/square foot (lbf/ft²) - `lbf__psft`
- Pound-force/square inch (lbf/in²) - `lbf__psin2`
- Poundal/square foot (pdl/ft²) - `pdl__psft`
- Torr (Torr) - `Torr`
- Centimeter mercury (0°C) (cm Hg 0°C) - `cm_Hg_0C`
- Millimeter mercury (0°C) (mm Hg 0°C) - `mm_Hg_0C`
- Inch mercury (32°F) (in Hg 32°F) - `in_Hg_32F`
- Inch mercury (60°F) (in Hg 60°F) - `in_Hg_60F`
- Centimeter water (4°C) (cm H2O 4°C) - `cm_H2O_4C`
- Millimeter water (4°C) (mm H2O 4°C) - `mm_H2O_4C`
- Inch water (4°C) (in H2O 4°C) - `in_H2O_4C`
- Foot water (4°C) (ft H2O 4°C) - `ft_H2O_4C`
- Inch water (60°F) (in H2O 60°F) - `in_H2O_60F`
- Foot water (60°F) (ft H2O 60°F) - `ft_H2O_60F`
- Atmosphere technical (at) - `at`
Energy
- Joule (J) - Singular: Joule, Plural: Joules - `J`
- Kilojoule (kJ) - Singular: Kilojoule, Plural: Kilojoules - `kJ`
- Kilowatt-hour (kW_h) - Singular: Kilowatt-hour, Plural: Kilowatt-hours - `kW_h`
- Watt-hour (W_h) - Singular: Watt-hour, Plural: Watt-hours - `W_h`
- Calorie (nutritional) (cal) - Singular: Calorie (nutritional), Plural: Calories (nutritional) - `cal`
- Horsepower hour (hp_h) - Singular: Horsepower hour, Plural: Horsepower hours - `hp_h`
- Btu (IT) (Btu_IT) - Singular: Btu (IT), Plural: Btu (IT) - `Btu_IT`
- Btu (th) (Btu_th) - Singular: Btu (th), Plural: Btu (th) - `Btu_th`
- Gigajoule (GJ) - Singular: Gigajoule, Plural: Gigajoules - `GJ`
- Megajoule (MJ) - Singular: Megajoule, Plural: Megajoules - `MJ`
- Millijoule (mJ) - Singular: Millijoule, Plural: Millijoules - `mJ`
- Microjoule (µJ) - Singular: Microjoule, Plural: Microjoules - `µJ`
- Nanojoule (nJ) - Singular: Nanojoule, Plural: Nanojoules - `nJ`
- Attojoule (aJ) - Singular: Attojoule, Plural: Attojoules - `aJ`
- Megaelectron-volt (MeV) - Singular: Megaelectron-volt, Plural: Megaelectron-volts - `MeV`
- Kiloelectron-volt (keV) - Singular: Kiloelectron-volt, Plural: Kiloelectron-volts - `keV`
- Electron-volt (eV) - Singular: Electron-volt, Plural: Electron-volts - `eV`
- Erg (erg) - Singular: Erg, Plural: Ergs - `erg`
- Gigawatt-hour (GW_h) - Singular: Gigawatt-hour, Plural: Gigawatt-hours - `GW_h`
- Megawatt-hour (MW_h) - Singular: Megawatt-hour, Plural: Megawatt-hours - `MW_h`
- Kilowatt-second (kW_s) - Singular: Kilowatt-second, Plural: Kilowatt-seconds - `kW_s`
- Watt-second (W_s) - Singular: Watt-second, Plural: Watt-seconds - `W_s`
- Newton meter (N_m) - Singular: Newton meter, Plural: Newton meters - `N_m`
- Kilocalorie (IT) (kcal_IT) - Singular: Kilocalorie (IT), Plural: Kilocalories (IT) - `kcal_IT`
- Kilocalorie (th) (kcal_th) - Singular: Kilocalorie (th), Plural: Kilocalories (th) - `kcal_th`
- Calorie (IT) (cal_IT) - Singular: Calorie (IT), Plural: Calories (IT) - `cal_IT`
- Calorie (th) (cal_th) - Singular: Calorie (th), Plural: Calories (th) - `cal_th`
- Mega Btu (IT) (MBtu_IT) - Singular: Mega Btu (IT), Plural: Mega Btu (IT) - `MBtu_IT`
- Ton-hour (refrigeration) (Ton_hr) - Singular: Ton-hour (refrigeration), Plural: Ton-hours (refrigeration) - `Ton_hr`
- Fuel oil equivalent @ kiloliter (J__kl) - Singular: Fuel oil equivalent @ kiloliter, Plural: Fuel oil equivalent @ kiloliters - `J__kl`
- Fuel oil equivalent @ barrel (US) (J__barrel) - Singular: Fuel oil equivalent @ barrel (US), Plural: Fuel oil equivalent @ barrels (US) - `J__barrel`
- Gigaton (Gton) - Singular: Gigaton, Plural: Gigatons - `Gton`
- Megaton (Mton) - Singular: Megaton, Plural: Megatons - `Mton`
- Kiloton (kton) - Singular: Kiloton, Plural: Kilotons - `kton`
- Ton (explosives) (ton_exp) - Singular: Ton (explosives), Plural: Tons (explosives) - `ton_exp`
- Dyne centimeter (dyn_cm) - Singular: Dyne centimeter, Plural: Dyne centimeters - `dyn_cm`
- Gram-force meter (gf_m) - Singular: Gram-force meter, Plural: Gram-force meters - `gf_m`
- Gram-force centimeter (gf_cm) - Singular: Gram-force centimeter, Plural: Gram-force centimeters - `gf_cm`
- Kilogram-force centimeter (kgf_cm) - Singular: Kilogram-force centimeter, Plural: Kilogram-force centimeters - `kgf_cm`
- Kilogram-force meter (kgf_m) - Singular: Kilogram-force meter, Plural: Kilogram-force meters - `kgf_m`
- Kilopond meter (kp_m) - Singular: Kilopond meter, Plural: Kilopond meters - `kp_m`
- Pound-force foot (lbf_ft) - Singular: Pound-force foot, Plural: Pound-force feet - `lbf_ft`
- Pound-force inch (lbf_in) - Singular: Pound-force inch, Plural: Pound-force inches - `lbf_in`
- Ounce-force inch (ozf_in) - Singular: Ounce-force inch, Plural: Ounce-force inches - `ozf_in`
- Foot-pound (ft_lbf) - Singular: Foot-pound, Plural: Foot-pounds - `ft_lbf`
- Inch-pound (in_lbf) - Singular: Inch-pound, Plural: Inch-pounds - `in_lbf`
- Inch-ounce (in_ozf) - Singular: Inch-ounce, Plural: Inch-ounces - `in_ozf`
- Poundal foot (pdl_ft) - Singular: Poundal foot, Plural: Poundal feet - `pdl_ft`
- Therm (therm) - Singular: Therm, Plural: Therms - `therm`
- Therm (EC) (therm_EC) - Singular: Therm (EC), Plural: Therms (EC) - `therm_EC`
- Therm (US) (therm_US) - Singular: Therm (US), Plural: Therms (US) - `therm_US`
Volume Dry
- Liter (L) - Singular: Liter, Plural: Liters - `L`
- Barrel dry (US) (bbl_dry_US) - Singular: Barrel dry (US), Plural: Barrels dry (US) - `bbl_dry_US`
- Pint dry (US) (pt_dry_US) - Singular: Pint dry (US), Plural: Pints dry (US) - `pt_dry_US`
- Quart dry (US) (qt_dry_US) - Singular: Quart dry (US), Plural: Quarts dry (US) - `qt_dry_US`
- Peck (US) (pk_US) - Singular: Peck (US), Plural: Pecks (US) - `pk_US`
- Peck (UK) (pk_UK) - Singular: Peck (UK), Plural: Pecks (UK) - `pk_UK`
- Bushel (US) (bu_US) - Singular: Bushel (US), Plural: Bushels (US) - `bu_US`
- Bushel (UK) (bu_UK) - Singular: Bushel (UK), Plural: Bushels (UK) - `bu_UK`
- Cor (Biblical) (cor_biblical) - Singular: Cor (Biblical), Plural: Cors (Biblical) - `cor_biblical`
- Homer (Biblical) (homer_biblical) - Singular: Homer (Biblical), Plural: Homers (Biblical) - `homer_biblical`
- Ephah (Biblical) (ephah_biblical) - Singular: Ephah (Biblical), Plural: Ephahs (Biblical) - `ephah_biblical`
- Seah (Biblical) (seah_biblical) - Singular: Seah (Biblical), Plural: Seahs (Biblical) - `seah_biblical`
- Omer (Biblical) (omer_biblical) - Singular: Omer (Biblical), Plural: Omers (Biblical) - `omer_biblical`
- Cab (Biblical) (cab_biblical) - Singular: Cab (Biblical), Plural: Cabs (Biblical) - `cab_biblical`
- Log (Biblical) (log_biblical) - Singular: Log (Biblical), Plural: Logs (Biblical) - `log_biblical`
Power
- Watt (W) - `W`
- Exawatt (EW) - `EW`
- Petawatt (PW) - `PW`
- Terawatt (TW) - `TW`
- Gigawatt (GW) - `GW`
- Megawatt (MW) - `MW`
- Kilowatt (kW) - `kW`
- Hectowatt (hW) - `hW`
- Dekawatt (daW) - `daW`
- Deciwatt (dW) - `dW`
- Centiwatt (cW) - `cW`
- Milliwatt (mW) - `mW`
- Microwatt (µW) - `µW`
- Nanowatt (nW) - `nW`
- Picowatt (pW) - `pW`
- Femtowatt (fW) - `fW`
- Attowatt (aW) - `aW`
- Horsepower (hp) - `hp`
- Horsepower (UK) (hp_UK) - `hp_UK`
- Horsepower (550 ft*lbf/s) (hp_550) - `hp_550`
- Horsepower (metric) (hp_metric) - `hp_metric`
- Horsepower (boiler) (hp_boiler) - `hp_boiler`
- Horsepower (electric) (hp_electric) - `hp_electric`
- Horsepower (water) (hp_water) - `hp_water`
- Pferdestarke (ps) - `ps`
- Btu (IT)/hour (Btu_h) - `Btu_h`
- Btu (IT)/minute (Btu_min) - `Btu_min`
- Btu (IT)/second (Btu_s) - `Btu_s`
- Btu (th)/hour (Btu_th_h) - `Btu_th_h`
- Btu (th)/minute (Btu_th_min) - `Btu_th_min`
- Btu (th)/second (Btu_th_s) - `Btu_th_s`
- MBtu (IT)/hour (MBtu_h) - `MBtu_h`
- MBH (MBH) - `MBH`
- Ton (refrigeration) (ton_refrigeration) - `ton_refrigeration`
- Kilocalorie (IT)/hour (kcal_h) - `kcal_h`
- Kilocalorie (IT)/minute (kcal_min) - `kcal_min`
- Kilocalorie (IT)/second (kcal_s) - `kcal_s`
- Kilocalorie (th)/hour (kcal_th_h) - `kcal_th_h`
- Kilocalorie (th)/minute (kcal_th_min) - `kcal_th_min`
- Kilocalorie (th)/second (kcal_th_s) - `kcal_th_s`
- Calorie (IT)/hour (cal_h) - `cal_h`
- Calorie (IT)/minute (cal_min) - `cal_min`
- Calorie (IT)/second (cal_s) - `cal_s`
- Calorie (th)/hour (cal_th_h) - `cal_th_h`
- Calorie (th)/minute (cal_th_min) - `cal_th_min`
- Calorie (th)/second (cal_th_s) - `cal_th_s`
- Foot pound-force/hour (ft_lbf_h) - `ft_lbf_h`
- Foot pound-force/minute (ft_lbf_min) - `ft_lbf_min`
- Foot pound-force/second (ft_lbf_s) - `ft_lbf_s`
- Pound-foot/hour (lbf_ft_h) - `lbf_ft_h`
- Pound-foot/minute (lbf_ft_min) - `lbf_ft_min`
- Pound-foot/second (lbf_ft_s) - `lbf_ft_s`
- Erg/second (erg_s) - `erg_s`
- Kilovolt ampere (kV_A) - `kV_A`
- Volt ampere (V_A) - `V_A`
- Newton meter/second (N_m_s) - `N_m_s`
- Joule/second (J_s) - `J_s`
- Exajoule/second (EJ_s) - `EJ_s`
- Petajoule/second (PJ_s) - `PJ_s`
- Terajoule/second (TJ_s) - `TJ_s`
- Gigajoule/second (GJ_s) - `GJ_s`
- Megajoule/second (MJ_s) - `MJ_s`
- Kilojoule/second (kJ_s) - `kJ_s`
- Hectojoule/second (hJ_s) - `hJ_s`
- Dekajoule/second (daJ_s) - `daJ_s`
- Decijoule/second (dJ_s) - `dJ_s`
- Centijoule/second (cJ_s) - `cJ_s`
- Millijoule/second (mJ_s) - `mJ_s`
- Microjoule/second (µJ_s) - `µJ_s`
- Nanojoule/second (nJ_s) - `nJ_s`
- Picojoule/second (pJ_s) - `pJ_s`
- Femtojoule/second (fJ_s) - `fJ_s`
- Attojoule/second (aJ_s) - `aJ_s`
- Joule/hour (J_h) - `J_h`
- Joule/minute (J_min) - `J_min`
- Kilojoule/hour (kJ_h) - `kJ_h`
- Kilojoule/minute (kJ_min) - `kJ_min`
Force
- Newton (N) - `N`
- Kilonewton (kN) - `kN`
- Gram-force (gf) - `gf`
- Kilogram-force (kgf) - `kgf`
- Ton-force (metric) (tf) - `tf`
- Exanewton (EN) - `EN`
- Petanewton (PT) - `PT`
- Teranewton (TN) - `TN`
- Giganewton (GN) - `GN`
- Meganewton (MN) - `MN`
- Hectonewton (hN) - `hN`
- Dekanewton (daN) - `daN`
- Decinewton (dN) - `dN`
- Centinewton (cN) - `cN`
- Millinewton (mN) - `mN`
- Micronewton (µN) - `µN`
- Nanonewton (nN) - `nN`
- Piconewton (pN) - `pN`
- Femtonewton (fN) - `fN`
- Attonewton (aN) - `aN`
- Dyne (dyn) - `dyn`
- Joule/meter (J_m) - `J_m`
- Joule/centimeter (J_cm) - `J_cm`
- Pound-force (lbf) - `lbf`
- Ounce-force (ozf) - `ozf`
- Ton-force (long) (tonf_UK) - `tonf_UK`
- Ton-force (short) (tonf_US) - `tonf_US`
- Kip-force (kipf) - `kipf`
Speed
- Meter per second (m/s) - `m/s`
- Kilometer per hour (km/h) - `km/h` (1 km/h = 1/3.6 m/s)
- Centimeter per second (cm/s) - `cm/s` (1 cm/s = 1/100 m/s)
- Millimeter per second (mm/s) - `mm/s` (1 mm/s = 1/1000 m/s)
- Kilometer per minute (km/min) - `km/min` (1 km/min = 1/60 km/h)
- Kilometer per second (km/s) - `km/s` (1 km/s = 1000 m/s)
- Foot per second (ft/s) - `ft/s` (1 ft/s = 0.3048 m/s)
- Mile per hour (mi/h) - `mi/h` (1 mi/h = 0.44704 m/s)
- Foot per minute (ft/min) - `ft/min` (1 ft/min = 0.3048/60 m/s)
- Foot per hour (ft/h) - `ft/h` (1 ft/h = 0.3048/3600 m/s)
- Mile per minute (mi/min) - `mi/min` (1 mi/min = 0.44704/60 m/s)
- Mile per second (mi/s) - `mi/s` (1 mi/s = 0.44704*3600 m/s)
- Knot (kn) - `kn` (1 knot = 0.514444 m/s)
Angle
- Radian (rad) - `rad`
- Grad (grad) - `grad` (1 grad = π/200 rad)
- Gon (gon) - `gon` (1 gon = π/200 rad)
- Mil (mil) - `mil` (1 mil = π/3200 rad)
- Turn (turn) - `turn` (1 turn = 2π rad)
- Quadrant (quadrant) - `quadrant` (1 quadrant = π/2 rad)
- Sextant (sextant) - `sextant` (1 sextant = π/3 rad)
- Degree (deg) - `deg`
- Minute (minute) - `minute` (1 minute = 1/60 degree)
- Second (second) - `second` (1 second = 1/3600 degree)
- Revolution (revolution) - `revolution` (1 revolution = 360 degrees)
- Right Angle (right_angle) - `right_angle` (1 right angle = π/2 rad)
Fuel Consumption
- Meter per Liter (m/L) - `m/L`
- Exameter per Liter (Em/L) - `Em/L`
- Petameter per Liter (Pm/L) - `Pm/L`
- Terameter per Liter (Tm/L) - `Tm/L`
- Gigameter per Liter (Gm/L) - `Gm/L`
- Megameter per Liter (Mm/L) - `Mm/L`
- Kilometer per Liter (km/L) - `km/L`
- Hectometer per Liter (hm/L) - `hm/L`
- Dekameter per Liter (dam/L) - `dam/L`
- Centimeter per Liter (cm/L) - `cm/L`
- Mile (US) per Liter (mi/L) - `mi/L`
- Nautical Mile per Liter (n.mile/L) - `n.mile/L`
- Nautical Mile per Gallon (US) (n.mile/gallon (US)) - `n.mile/gallon (US)`
- Kilometer per Gallon (US) (km/gallon (US)) - `km/gallon (US)`
- Meter per Gallon (US) (m/gallon (US)) - `m/gallon (US)`
- Meter per Gallon (UK) (m/gallon (UK)) - `m/gallon (UK)`
- Mile (US) per Gallon (US) (mi/gallon (US)) - `mi/gallon (US)`
- Mile (UK) per Gallon (UK) (mi/gallon (UK)) - `mi/gallon (UK)`
- Meter per Cubic Meter (m/m^3) - `m/m^3`
- Meter per Cubic Centimeter (m/cm^3) - `m/cm^3`
- Meter per Cubic Yard (m/yd^3) - `m/yd^3`
- Meter per Cubic Foot (m/ft^3) - `m/ft^3`
- Meter per Cubic Inch (m/in^3) - `m/in^3`
- Meter per Quart (US) (m/quart (US)) - `m/quart (US)`
- Meter per Quart (UK) (m/quart (UK)) - `m/quart (UK)`
- Meter per Pint (US) (m/pt (US)) - `m/pt (US)`
- Meter per Pint (UK) (m/pt (UK)) - `m/pt (UK)`
- Meter per Cup (US) (m/cup (US)) - `m/cup (US)`
- Meter per Cup (UK) (m/cup (UK)) - `m/cup (UK)`
- Meter per Fluid Ounce (US) (m/fl.ounce (US)) - `m/fl.ounce (US)`
- Meter per Fluid Ounce (UK) (m/fl.ounce (UK)) - `m/fl.ounce (UK)`
- Liter per Meter (L/m) - `L/m`
- Liter per 100 Kilometers (L/100 km) - `L/100 km`
- Gallon (US) per Mile (gallon (US)/mile) - `gallon (US)/mile`
- Gallon (US) per 100 Miles (gallon (US)/100 mi) - `gallon (US)/100 mi`
- Gallon (UK) per Mile (gallon (UK)/mile) - `gallon (UK)/mile`
- Gallon (UK) per 100 Miles (gallon (UK)/100 mi) - `gallon (UK)/100 mi`
- Mile (US) per Gallon (mile/gallon (US)) - `mile/gallon (US)`
- Mile (UK) per Gallon (mile/gallon (UK)) - `mile/gallon (UK)`
- Nautical Mile (US) per Gallon (nautical mile/gallon (US)) - `nautical mile/gallon (US)`
- Nautical Mile (UK) per Gallon (nautical mile/gallon (UK)) - `nautical mile/gallon (UK)`
- Meter per Quart (US) (meter/quart (US)) - `meter/quart (US)`
- Meter per Quart (UK) (meter/quart (UK)) - `meter/quart (UK)`
- Meter per Pint (US) (meter/pint (US)) - `meter/pint (US)`
- Meter per Pint (UK) (meter/pint (UK)) - `meter/pint (UK)`
- Meter per Cup (US) (meter/cup (US)) - `meter/cup (US)`
- Meter per Cup (UK) (meter/cup (UK)) - `meter/cup (UK)`
- Meter per Fluid Ounce (US) (meter/fl.ounce (US)) - `meter/fl.ounce (US)`
- Meter per Fluid Ounce (UK) (meter/fl.ounce (UK)) - `meter/fl.ounce (UK)`
Number
- Binary - `binary`
- Octal - `octal`
- Decimal - `decimal`
- Hexadecimal - `hexadecimal`
- Base-2 - `base-2`
- Base-3 - `base-3`
- Base-4 - `base-4`
- Base-5 - `base-5`
- Base-6 - `base-6`
- Base-7 - `base-7`
- Base-8 - `base-8`
- Base-9 - `base-9`
- Base-10 - `base-10`
- Base-11 - `base-11`
- Base-12 - `base-12`
- Base-13 - `base-13`
- Base-14 - `base-14`
- Base-15 - `base-15`
- Base-16 - `base-16`
- Base-17 - `base-17`
- Base-18 - `base-18`
- Base-19 - `base-19`
- Base-20 - `base-20`
- Base-21 - `base-21`
- Base-22 - `base-22`
- Base-23 - `base-23`
- Base-24 - `base-24`
- Base-25 - `base-25`
- Base-26 - `base-26`
- Base-27 - `base-27`
- Base-28 - `base-28`
- Base-29 - `base-29`
- Base-30 - `base-30`
- Base-31 - `base-31`
- Base-32 - `base-32`
- Base-33 - `base-33`
- Base-34 - `base-34`
- Base-35 - `base-35`
- Base-36 - `base-36`
Data Storage
- Bit - `b`
- Byte - `B`
- Nibble - `nibble`
- Character - `character`
- Word - `word`
- MAPM-Word - `MAPM-word`
- Quadruple-Word - `quadruple-word`
- Block - `block`
- Kilobit - `kb`
- Kilobyte - `kB`
- Megabit - `Mb`
- Megabyte - `MB`
- Gigabit - `Gb`
- Gigabyte - `GB`
- Terabit - `Tb`
- Terabyte - `TB`
- Petabit - `Pb`
- Petabyte - `PB`
- Exabit - `Eb`
- Exabyte - `EB`
- Floppy Disk (3.5", DD) - `floppy disk (3.5", DD)`
- Floppy Disk (3.5", HD) - `floppy disk (3.5", HD)`
- Floppy Disk (3.5", ED) - `floppy disk (3.5", ED)`
- Floppy Disk (5.25", DD) - `floppy disk (5.25", DD)`
- Floppy Disk (5.25", HD) - `floppy disk (5.25", HD)`
- Zip 100 - `Zip 100`
- Zip 250 - `Zip 250`
- Jaz 1GB - `Jaz 1GB`
- Jaz 2GB - `Jaz 2GB`
- CD (74 minute) - `CD (74 minute)`
- CD (80 minute) - `CD (80 minute)`
- DVD (1 layer, 1 side) - `DVD (1 layer, 1 side)`
- DVD (2 layer, 1 side) - `DVD (2 layer, 1 side)`
- DVD (1 layer, 2 side) - `DVD (1 layer, 2 side)`
- DVD (2 layer, 2 side) - `DVD (2 layer, 2 side)`
## Error Handling Metric Converter
Error Handling Metric Converter provides error handling for unsupported units and invalid conversion operations. If an unsupported unit is provided or an invalid conversion operation is attempted, an appropriate error will be thrown.
### API Reference
#### `convert(value)`
Creates a converter instance with the given initial value.
- **value**: The initial value to convert.
#### `Converter.from(unit)`
Specifies the origin unit for conversion.
- **unit**: The unit of the input value.
#### `Converter.to(unit)`
Converts the value to the specified unit.
- **unit**: The unit to convert to.
### Author
**Name:** Rahul Dey
### License
This project is licensed under the MIT License.
### Contributing
Contributions are welcome! If you encounter any bugs or have suggestions for improvements, please feel free to open an issue or submit a pull request on [GitHub Issues](https://github.com/rahulthedevil/metric-converter/issues).
### Dependencies
- lodash (^4.17.21)