npm.io
4.9.1 • Published 1 year ago

@tonaljs/abc-notation

Licence
MIT
Version
4.9.1
Deps
2
Size
17 kB
Vulns
0
Weekly
0

@tonaljs/abc-notation tonal npm version

Convert note names between scientific and abc notation

Usage

ES6:

import { AbcNotation } from "tonal";

nodejs:

const { AbcNotation } = require("tonal");

API

abcToScientificNotation(noteNameInAbc: string) => string
AbcNotation.abcToScientificNotation("c"); // => "C5"
scientificToAbcNotation(noteNameInScientific: string) => string
AbcNotation.scientificToAbcNotation("C#4"); // => "^C"
transpose(note: string, interval: string) => string

Transpose an note in abc notation:

AbcNotation.transpose("=C", "P19"); // => "g'"
distance(from: string, to: string) => string

Find the interval between two notes in abc notation:

AbcNotation.distance("=C", "g"); // => "12P"

References

Keywords