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

pubchem-elements

v1.0.0

Published

The PubChem periodic table data

Downloads

2

Readme

pubchem-elements

An ES6 module built of the periodic table data from PubChem with a convenient interface and bundled TypeScript declarations.

Installation

Install using your package manager of choice. With npm:

npm install pubchem-elements

Because the package is bundled as an ES6 module, if you are targeting the browser and not already using a bundler, you can download a copy into your codebase, or import it from a CDN:

// make sure to use <script type="module">
import { elements } from "https://cdnjs.cloudflare.com/ajax/libs/pubchem-elements/1.0.0/dist/elements.js";

A CDN is convenient for simple uses, but you will not be able to benefit from the package's type declarations.

Usage

Import the elements object, then access elements by atomic number, symbol, or name.

import { elements } from "pubchem-elements";

console.log(elements[1].Name); // Hydrogen
console.log(elements.F.Electronegativity); // 3.98
console.log(elements.Iron.OxidationStates); // [3, 2]

The names of elements and properties are unchanged from the PubChem data, including capitalization. Some property values are converted to more convenient representations:

  • Numeric values are parsed as numbers.
  • Empty values are replaced with null.
  • OxidationStates is parsed into a (potentially empty) array of numbers.

Building

Building requires GNU Make. Install dependencies, then run make from the repository root.

If PubChemElements_all.json is missing, the Makefile can download it using curl. However, the data file is checked into the repository to keep versions associated with the data they are built from, so you should not need to download it separately.

To delete the build outputs:

make clean     # deletes the build and dist directories
make clean-all # also deletes the data file (not recommended)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Citations

National Center for Biotechnology Information (2022). PubChem Periodic Table of Elements. Retrieved July 16, 2022 from https://pubchem.ncbi.nlm.nih.gov/periodic-table/.

Disclaimer

This project is not in any way associated with PubChem or the National Library of Medicine. PubChem is a registered trademark of the National Library of Medicine.

License

This is free and unencumbered software released into the public domain. See the Unlicense for full details.