bytes-to-co2
Calculate the co2 footprint (carbon dioxide released to the atmosphere)
of transmitting an x
amount of bytes over the internet.
Transport data over the internet requires energy (datacenters, repeaters,
switches, etc) and how this energy is different from country to country. This
is known as the "co2 emission intensity". Each country have different ways to
produce electricity (solar, wind, coal, diesel, nuclear, etc) and each one
of these releases to the atmosphere a different amount of Carbon Dioxide (co2),
therefore transmit x amount of data will release a y amount of co2.
This module has the information of the European energy grid
from 1990 to 2016. More countries will be added later.
Usage
Install the package using
yarn add bytes-to-co2
or
npm install bytes-to-co2
Import the library and call the function as shown:
import { byteToCo2 } from "bytes-to-co2";
const europeanUnion = byteToCo2({ byteSize: 1000000 });
const uk = byteToCo2({ byteSize: 1000000, country: 'United Kingdom' });
const sweden = byteToCo2({ byteSize: 1000000, country: 'Sweden' });
const spain = byteToCo2({ byteSize: 1000000, country: 'Spain' });
Contributing
If anything in the way I'm calculating the footprint looks odd to you, please feel free to open an issue or PR.
Any feedback or improvements in the way the co2 is calculated is welcomed.