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 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-temperature.js

v1.0.0

Published

A Node.Js Package That Helps You in Converting Temperature

Downloads

6

Readme

node-temperature.js

A Node.Js Package That Helps You in Converting Temperature

Features

  • Super Simple And Full-Features Converter
  • More than 10 Methods
  • Celsius, Fahrenheit, Kelvin, reamur Converter are Available!!
  • Multi Converter Also available!!

Menu

Celsius

Celsius To Fahrenheit Method:

const Temperature = require('node-temperature.js');

Temperature.CelsiusToFahrenHeit(10).then(res => {
    // convert 10 Celsius to FahrenHeit
    console.log(res) // 50
}) 

Celsius To Kelvin Method:

const Temperature = require('node-temperature.js');

Temperature.CelsiusToKelvin(10).then(res => {
    // convert 10 Celsius to Kelvin
    console.log(res) // 283.15
})

Celsius To Reamur Method:

const Temperature = require('node-temperature.js');

Temperature.CelsiusToReamur(10).then(res => {
    // convert 10 Celsius to Reamur
    console.log(res) // 8
})

Multi Convert By Celsius Method:

const Temperature = require('node-temperature.js');

Temperature.MultiByCelsius(10).then(res => {
    // Multi Convert 10 Celsius
    console.log(res)
    /*{
        fahrenheit: 50,
        kelvin: 283.15,
        reamur: 8
    }*/
});

Fahrenheit

FahrenHeit to Celsius Method:

const Temperature = require('node-temperature.js');

Temperature.FahrenheitToCelsius(10).then(res => {
    // Convert 10 FahrenHeit to Celsius
    console.log(res) // -12.2222
})

FahrenHeit to Kelvin Method:

const Temperature = require('node-temperature.js');

Temperature.FahrenheitToKelvin(10).then(res => {
    // Convert 10 FahrenHeit to Kelvin
    console.log(res) // 260.92777
})

FahrenHeit To Reamur Method:

const Temperature = require('node-temperature.js');

Temperature.FahrenheitToReamur(10).then(res => {
    // Convert 10 FahrentHeit To Reamur
    console.log(res) // -9.7777
})

Multi Convert By FahrenHeit:

const Temperature = require('node-temperature.js');

Temperature.MultiByFahrenheit(10).then(res => {
    // Multi Convert 10 Fahrenheit
    console.log(res) 
    /*{
        celsius: -12.222222222222223,
        kelvin: 260.92777777777775,
        reamur: -9.777777777777779
    }*/
})

Kelvin

Kelvin To Celsius Method:

const Temperature = require('node-temperature.js')

Temperature.KelvintoCelsius(10).then(res => {
    // Convert 10 Kelvin to Celsius
    console.log(res) // -263.15
})

Kelvin to FahrenHeit Method:

const Temperature = require('node-temperature.js')

Temperature.KelvintoFahrenheit(10).then(res => {
    // Convert 10 Kelvin to Fahrenheit
    console.log(res) // -441.66999
})

Kelvin to Reamur Method:

const Temperature = require('node-temperature.js')

Temperature.KelvintoReamur(10).then(res => {
    // Convert 10 Kelvin to Reamur
    console.log(res) // -210.5199
})

Multi Convert By Kelvin:

const Temperature = require('node-temperature.js')

Temperature.MultiByKelvin(10).then(res => {
    // Multi Convert 10 Kelvin 
    console.log(res)
    /*{
        celsius: -263.15,
        fahrenheit: -441.66999999999996,
        reamur: -210.51999999999998
    }*/
})

Reamur

Reamur To Celsius Method:

const Temperature = require('node-temperature.js')

Temperature.ReamurToCelsius(10).then(res => {
    // Convert 10 Reamur to Celsius
    console.log(res); // 12.5
})

Reamur To Fahrenheit Method:

const Temperature = require('node-temperature.js')

Temperature.ReamurToFahrenheit(10).then(res => {
    // Convert 10 Reamur to Celsius
    console.log(res); // 54.5
})

Reamur To Kelvin Method:

const Temperature = require('node-temperature.js')

Temperature.ReamurToKelvin(10).then(res => {
    console.log(res) // 285.65
})

Multi Convert By Reamur:

const Temperature = require('node-temperature.js')

Temperature.MultiByReamur(10).then(res => {
    // Multi Convert 10 Reamur
    console.log(res)

    /*{
        celsius: 12.5,
        fahrenheit: 54.5,
        kelvin: 285.65
    }*/
})