Skip to content
This repository has been archived by the owner on May 2, 2022. It is now read-only.

Releases: martijnversluis/ChordJS

Deprecation - ChordJS has been merged into ChordSheetJS

25 Nov 21:00
Compare
Choose a tag to compare

⚠️ ChordJS has been merged into ChordSheetJS

ChordJS will not receive any more updates, although it will remain on NPM. To benefit from new features, please use ChordSheetJS instead.

npm install chordjs

or:

yarn add chordjs
import Chord from 'chordsheetjs';
const chord = Chord.parse('Em');

v2.0.1

18 Aug 09:06
Compare
Choose a tag to compare

Bug fixes:

  • Prevent deprecations causing errors (#141)

v2.0.0

18 Jun 18:50
Compare
Choose a tag to compare

Add support for numeric chords (Nashville system)
Eg:

const numericChord = parse('2/4');
const chordSymbol = toChordSymbol(numericChord, 'E');
chordSymbol.toString(); // -> "F#m/A"