https://github.com/hugoalh/temperature-es
An ES (JavaScript & TypeScript) module to convert between units of the temperature.
https://github.com/hugoalh/temperature-es
conversion convert es javascript js modulejs scale scales temperature ts typescript unit units
Last synced: 26 days ago
JSON representation
An ES (JavaScript & TypeScript) module to convert between units of the temperature.
- Host: GitHub
- URL: https://github.com/hugoalh/temperature-es
- Owner: hugoalh
- License: other
- Created: 2022-08-22T08:14:01.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T09:25:10.000Z (10 months ago)
- Last Synced: 2025-01-06T10:35:03.003Z (10 months ago)
- Topics: conversion, convert, es, javascript, js, modulejs, scale, scales, temperature, ts, typescript, unit, units
- Language: TypeScript
- Homepage:
- Size: 276 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Temperature (ES)
[**⚖️** MIT](./LICENSE.md)
[](https://github.com/hugoalh/temperature-es)
[](https://jsr.io/@hugoalh/temperature)
[](https://www.npmjs.com/package/@hugoalh/temperature)An ES (JavaScript & TypeScript) module to convert between units of the temperature.
These units of the temperature are supported:
| | | **Names** | **Symbols** |
|:-:|:--|:--|:--|
| ***\[SI\]*** | **Kelvin** | `Kelvin` | `K` |
| | **Celsius** | `Celsius` | `°C` / `C` |
| | **Delisle** | `Delisle` | `°De` / `De` / `D` |
| | **Fahrenheit** | `Fahrenheit` | `°F` / `F` |
| | **Newton \*** | `Newton` | `°N` / `N` |
| | **Rankine** | `Rankine` | `°R` / `R` / `Ra` |
| | **Réaumur** | `Réaumur` / `Reaumur` | `°Ré` / `Re` / `r` |
| | **Rømer** | `Rømer` / `Roemer` / `Romer` | `°Rø` / `Ro` |> **\*** Sir Isaac Newton's degree of temperature
## 🔰 Begin
### 🎯 Targets
| | **Remote** | **JSR** | **NPM** |
|:--|:--|:--|:--|
| **[Bun](https://bun.sh/)** >= v1.1.0 | ❌ | ❓ | ✔️ |
| **[Cloudflare Workers](https://workers.cloudflare.com/)** | ❌ | ❓ | ✔️ |
| **[Deno](https://deno.land/)** >= v1.42.0 | ✔️ | ✔️ | ✔️ |
| **[NodeJS](https://nodejs.org/)** >= v16.13.0 | ❌ | ❓ | ✔️ |> [!NOTE]
> - It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.### #️⃣ Resources Identifier
- **Remote - GitHub Raw:**
```
https://raw.githubusercontent.com/hugoalh/temperature-es/{Tag}/mod.ts
```
- **JSR:**
```
[jsr:]@hugoalh/temperature[@{Tag}]
```
- **NPM:**
```
[npm:]@hugoalh/temperature[@{Tag}]
```> [!NOTE]
> - For usage of remote resources, it is recommended to import the entire module with the main path `mod.ts`, however it is also able to import part of the module with sub path if available, but do not import if:
>
> - it's path has an underscore prefix (e.g.: `_foo.ts`, `_util/bar.ts`), or
> - it is a benchmark or test file (e.g.: `foo.bench.ts`, `foo.test.ts`), or
> - it's symbol has an underscore prefix (e.g.: `_bar`, `_foo`).
>
> These elements are not considered part of the public API, thus no stability is guaranteed for them.
> - For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the [file `jsr.jsonc`](./jsr.jsonc) property `exports` for available sub entrypoints.
> - It is recommended to use this module with tag for immutability.### 🛡️ Runtime Permissions
*This module does not request any runtime permission.*
## 🧩 APIs
- ```ts
class Temperature {
constructor(fromValue: number, fromUnit?: TemperatureUnitsInputs);
toObject(): Record;
toString(toUnit?: TemperatureUnitsInputs): string;
toValue(toUnit?: TemperatureUnitsInputs): number;
static unit(unit?: TemperatureUnitsInputs): TemperatureUnitMeta;
static units(): TemperatureUnitMeta[];
}
```> [!NOTE]
> - For the full or prettier documentation, can visit via:
> - [Deno CLI `deno doc`](https://docs.deno.com/runtime/reference/cli/documentation_generator/)
> - [JSR](https://jsr.io/@hugoalh/temperature)## ✍️ Examples
- ```ts
new Temperature(25, "C").toValue();
//=> 298.15
```
- ```ts
new Temperature(25, "C").toString();
//=> "298.15 K"
```
- ```ts
new Temperature(298.15).toValue("C");
//=> 25
```
- ```ts
new Temperature(298.15).toString("C");
//=> "25 °C"
```## 📚 Guides
- Wikipedia
- [Conversion of scales of temperature](https://en.wikipedia.org/wiki/Conversion_of_scales_of_temperature)