# @atomistics/elements

> A table of information about the chemical elements.

Latest version **1.0.0** (published 2018-09-07) · Unlicensed license · 0 weekly downloads

## Install

```sh
npm install @atomistics/elements
pnpm add @atomistics/elements
yarn add @atomistics/elements
bun add @atomistics/elements
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-09-07 |
| First published | 2018-09-07 |
| Weekly downloads | 0 |
| License | Unlicensed |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 21.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Rye Terrell |
| Maintainers | wwwtyro |
| Keywords | chemistry, atomistics, elements |

## Links

- npm: https://www.npmjs.com/package/@atomistics/elements
- Repository: https://github.com/atomistics/elements
- Homepage: https://github.com/atomistics/elements#readme
- Issues: https://github.com/atomistics/elements/issues
- npm.io page: https://npm.io/package/@atomistics/elements

## Recent versions

- 1.0.0 (latest) — 2018-09-07

## README

# elements

A table of information about the chemical elements. Currently includes symbol, name, mass, radius, number, and a color.

The radius and color are primarily for rendering purposes, and don't have any documented basis.

## Install

```
npm i --save @atomistics/elements
```

## Example

```js
const e = require('@atomistics/elements');

> e.Be

{ symbol: 'Be',
  name: 'beryllium',
  mass: 9.012182,
  radius: 0.96,
  color: [ 0.761, 1, 0 ],
  number: 4 }

> e['Be'].color

[ 0.761, 1, 0 ]

> e[4]

{ symbol: 'Be',
  name: 'beryllium',
  mass: 9.012182,
  radius: 0.96,
  color: [ 0.761, 1, 0 ],
  number: 4 }
```

---
_Source: https://npm.io/package/@atomistics/elements · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
