Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
A small library for working with element data and building compounds.
PeriodicTable contains information on individual elements. It allows retrieval by symbol, name, or atomic number. It also allows filtering by type, period, and group.
import { PeriodicTable } from 'mendeleev'; // ES2015
var PeriodicTable = require('mendeleev').PeriodicTable; // CommonJS
.getElement(str)
Takes an element's symbol as an argument, such as 'H' or 'Ni', returning the elements data if it's found, null if it's not.
var hydrogen = PeriodicTable.getElement('H');
hydrogen == {
name:"hydrogen",
symbol:"H",
type:"other-nonmetal",
number:1,
mass:1.008,
period:1,
group:1,
melting:14.01,
boiling:20.28,
density:0.00008988,
electronegativity:2.20,
radius:25,
valence:1,
specificheat:14.304
}
var unknown = PeriodicTable.getElement('Nope');
unknown == null;
.getAtomic(number)
Takes an element's atomic number as an argument, such as 17 or 118, returning the elements data if it's found, null if it's not.
var helium = PeriodicTable.getAtomic(2); // { name: 'helium', ... }
var unknown = PeriodicTable.getAtomic(1028); // null
.getType(string)
Takes an element type as an argument, returning an array of matching elements.
Possible element types include: alkali-metal
, alkaline-earth
, transition-metal
, post-transition-metal
, metalloid
, other-nonmetal
, halogen
, noble-gas
, lanthanoid
, actinoid
.
var halogens = PeriodicTable.getType('halogen'); // [{ name: 'fluorine', ... }, { name: 'chlorine', ... }, ...]
var unknown = PeriodicTable.getType('fake-type'); // []
.getPeriod(number)
Takes an elemental period (1 to 7) as an argument, returning an array of matching elements.
var periodOne = PeriodicTable.getPeriod(1); // [{ name: 'hydrogen', ... }, { name: 'helium', ... }, ...]
var unknown = PeriodicTable.getPeriod(1000); // []
.getGroup(number)
Takes an elemental group (1 to 18) as an argument, returning an array of matching elements.
var alkalineEarth = PeriodicTable.getGroup(2); // [{ name: 'beryllium', ... }, { name: 'magnesium', ... }, ...]
var unknown = PeriodicTable.getGroup(1000); // []
Compound is an object that represents a chemical compound. After being initialized, it can have elements added and subtracted. It also has methods for getting the molecular mass, mass percentages, and for creating an HTML representation of the compound.
You can initialize an empty compound, or pre-populate it with elements.
import { Compound } from 'mendeleev'; // ES2015
var Compound = require('mendeleev').Compound; // CommonJS
var empty = new Compound();
var water = new Compound({'H': 2, 'O', 1});
.add(str, ?number)
Allows you to add an element to a compound, with an optional quantity. The default quantity is 1.
var water = new Compound();
water.add('H', 2);
water.add('O');
.remove(str, ?number)
Allows you to remove an element from a compound, with an optional quantity. The default quantity is 1.
var c = new Compound({'H': 2, 'O': 1});
c.remove('O') // Compound would be H2
.getMass()
Returns the molecular mass of the compound.
var silverNitrate = new Compound({"Ag": 1, "N": 1, "O": 3})
var m = silverNitrate.getMass(); // 169.87490
.getPercentages()
Returns an array in the form of [{element: <str>, percentage: <number>}, ....]
var water = new Compound({'H': 2, 'O', 1});
var p = water.getPercentages(); // [{element: 'H', percentage:11.19}, {element: 'O', percentage:88.81}]
.toHTML()
Returns the compound as HTML, giving the quantities <sub>
tags.
var water = new Compound({'H': 2, 'O', 1});
var h = water.toHTML(); // H<sub>2</sub>O
Utility is where a few static utility methods are kept. It currently only has one.
import { Utility } from 'mendeleev'; // ES2015
var Utility = require('mendeleev').Utility; // CommonJS
.stringToElementList(string)
Accepts a string, such as 'H2O', and turns it into an element list, of the form {'H': 2, 'O', 1}. An element list is what you would use to initialize a compound. This currently does not work with parentheses
var formula = "AlO";
var elementList = Utility.stringToElementList(formula);
var aluminiumMonoxide = new Compound(elementList);
FAQs
A small library for working with element data and building compounds.
The npm package mendeleev receives a total of 43 weekly downloads. As such, mendeleev popularity was classified as not popular.
We found that mendeleev demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.