# zheminivan

> zheminivan is a Node.js module that provides helpful functions for working with musical harmony, such as retrieving chord notes, scale notes, and chord progressions.

Latest version **1.0.0** (published 2024-03-18) · ISC license · 0 weekly downloads

## Install

```sh
npm install zheminivan
pnpm add zheminivan
yarn add zheminivan
bun add zheminivan
```

## 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 | 2024-03-18 |
| First published | 2024-03-18 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Unpacked size | 2.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | zheminivan |

## Links

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

## Dependencies (7)

- [tonal](https://npm.io/package/tonal.md) ^2.8.0
- [carolscott](https://npm.io/package/carolscott.md) 1.0.0
- [farmaniyah](https://npm.io/package/farmaniyah.md) 1.0.0
- [krotovsemen](https://npm.io/package/krotovsemen.md) 1.0.0
- [sdk-krotovsemen](https://npm.io/package/sdk-krotovsemen.md) 1.0.0
- [squarunblownett](https://npm.io/package/squarunblownett.md) 1.0.0
- [donaldrodriguez-os](https://npm.io/package/donaldrodriguez-os.md) 1.0.0

## Recent versions

- 1.0.0 (latest) — 2024-03-18

## README

# zheminivan

zheminivan is a Node.js module that provides helpful functions for working with musical harmony, such as retrieving chord notes, scale notes, and chord progressions.

## Installation

You can install zheminivan via npm: `npm install zheminivan`

## Usage

```javascript
const harmonyUtils = require('harmony-utils');

// Get the notes of a chord
const chordNotes = harmonyUtils.getChordNotes('Cmaj7');
console.log(chordNotes); // Output: ['C', 'E', 'G', 'B']

// Get the notes of a scale
const scaleNotes = harmonyUtils.getScaleNotes('C major');
console.log(scaleNotes); // Output: ['C', 'D', 'E', 'F', 'G', 'A', 'B']

// Get chord progressions in a specific key
const progression = ['I', 'IV', 'V'];
const chordProgression = harmonyUtils.getChordProgression('C', progression);
console.log(chordProgression); // Output: [['C', 'E', 'G'], ['F', 'A', 'C'], ['G', 'B', 'D']]
```

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