0.4.3 • Published 6 years ago

momo-chords v0.4.3

Weekly downloads
41
License
Apache-2.0
Repository
github
Last release
6 years ago

Momo Chords · GitHub license npm version Build Status TypeScript

Chord parser and printer.

Try it on the demo page!

Overview

There are many existing libraries that tackle handling chords. However, they either don't support a large enough set of chords, or they lack functionality, or they are not properly configurable, or they don't come with types.

The goal of this library is to support all of the above.

Currently it supports:

  • A very large set of chords
  • Parsing strings as chord symbols
  • Parsing strings as chord notes
  • Printing chord names when given a chord
  • An even larger set of chords (added in 0.3.0)
  • Configurable naming strategies (added in 0.4.0)
  • Autocomplete/search by name

Installation

npm install --save momo-chords

or

yarn add momo-chords

Usage

import { Chords } from "momo-chords";

const chords = new Chords();

// Check if a string is a valid chord anme
chords.isChord("A#maj7/G");  // true
chords.isChord("T");  // false

// Parse a string into a chord object
const chord = chords.parse("A#M7/G");  // chord object

// Print the name of a chord
chords.print(chord.symbol);  // "A#maj7/G"

Custom namings

The library comes with a comprehensive set of default chord names. However, you might wish to customize what should be considered a chord and/or how a chord should be printed. This is possible to do why namings.

In order to apply a custom naming, simply provide a naming description to the constructor:

import { Chords, INaming } from "momo-chords";

const myNaming: Partial<INaming> = { ... };
const chords = new Chords(myNaming);

You can see the default naming called DEFAULT_NAMING in naming.ts.

The naming you provide is a Partial<INaming> because you can provide a subset of the naming description. What you provide will be used to override the defaults.

If you want to update just how chords should be printed, then it is enough to override only the printing key of the naming. printing contains a preferred name for each chord part.

If you also want to customise what should be considered a chord, you can override the parsing key of the naming. parsing contains a list of all possible names for each chord part.

How it works

Parsing

  1. First, we split the chord string into components using a regular expression generated from the list of all possible chord component names. If the regular expression fails, the string is not a chord.
  2. Next, we check for certain rules regarding the chord components: for example, altered fifths cannot be specified via both dim and b5, and power chords cannot contain further components. If any of the tests fail, the string is not a chord.
  3. Next, we generate the intervals (notes) in the chord, given the constraints specified by the chord components. If there is no chord satisfying all of the chord components, the string is not a chord.
  4. Finally, we now know that the string is indeed a chord, and we combine the results into a single chord object.

Printing

  1. The naming contains a preferred name for each chord component.
  2. For each chord component, we pick the preferred name, and we concatenate the results.
0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago