0.1.1 • Published 3 years ago

chordproject-viewer v0.1.1

Weekly downloads
13
License
-
Repository
-
Last release
3 years ago

Demo

ChordProject Viewer

A JavaScript frontend library for parsing and formatting ChordPro songs with chord diagrams.

Inspired by: https://github.com/buzcarter/UkeGeeks with the following modifications:

  • Adaptation for Guitar
  • Upgraded to ES6
  • Allows to send the chordpro songText instead of preload it in the document
  • Import Themes class (in order to change only the viewer, not the body)
  • Beautify chord diagrams
  • Chord diagrams on independent div
  • Bugs fixes
  • Bundled and minified to optimize performance
  • More Chords

Overview

Reads marked-up music (lyrics + chords) extracting all of the chords used. Generates chord diagrams using HTML5 <canvas> and rewrites the music with standard HTML wrapping the chords.

Usage

ChordProject Viewer is on npm, to install run:

$ npm i chordproject-viewer

Load with require():

var ChordProjectViewer = require("chordproject-viewer");

or import (es6, typescript):

import * as ChordProjectViewer from "chordproject-viewer";

And call the Main class:

ChordProjectViewer.Main.init(false);
ChordProjectViewer.Main.run(chordSheet);

Demo

Open demo/index.html on the browser to see a webpage example.

You can also modify the sources to see changes:

  1. Clone
  2. Install dependencies
$ npm i
  1. Change the songText input in demo/sample.js (Or any source file in src)
  2. Bundle files with webpack (the output will be in dist folder)
$ npm run build
  1. Open again demo/index.html to see the result!

ChordPro format: Lyrics and Chords

Essentially, it looks like this:

    {title: Praise Adonai}
    {artist: Paul Baloche}

    {sot}
    E|-----2---2-----|-------3-3---
    B|---3---3---3---|-----0-------
    G|-2-------------|---0---------
    D|---------------|---0---------
    A|---------------|-2-----------
    E|---------------|-------------
    {eot}

    [Am]Who is like [F]Him,
    The Lion and the [C]Lamb
    Seated on the [G]throne    [E7]
    [Am]Mountains bow [F]down
    Every ocean [C]roars
    To the Lord of [G]hosts

    {start_of_chorus}
    [F]Praise Ado[Am]nai
    From the [G]rising of the sun
    'Till the [Dm7]end of every [F]day[G]
    [F]Praise Ado[Am]nai
    All the [G]nations of the earth
    All the [Dm7] Angels and the [F]Saints
    [G]Sing [Bbsus2]praise
    {end_of_chorus}

Contribute

Contributions are welcome, especially with the chords fingers:

./src/instrumentDefinitions.js

0.1.1

3 years ago

0.1.0

3 years ago