npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

chordy-svg

v1.2.1

Published

Guitar Chord SVG Diagram Generator

Downloads

8

Readme

chordy-svg

Node JS module for generating guitar chord diagrams in SVG format. Interval names are shown inside the dotted positions.

Example 1 Example 2

A <defs> element is written which contains the notes of the chord. This in turn can later be used by the user for audio previews etc.

<defs xmlns="http://www.w3.org/2000/svg" id="tonal">
  <style id="SvgjsStyle1101"/>
  <notes id="tonal-notes">C3:G3:B3:E4:G4</notes>
  <semitones id="tonal-semitones">8:15:19:24:27</semitones>
  <comment id="chord-comment"/>
</defs>

The GitHub page may contain more up to date code than the NPM release. Please check GitHub for the most recent updates.

It uses:

  • SVG.js for SVG manipulation.
  • svgdom to allow SVG.js to run server-side.
  • tonal music theory library for determining the notes and intervals of defined chords.

Demo

You can see this library being used at https://chords.gock.net/

Installation

With npm

npm install chordy-svg --save

Examples

Node Example

Create a node application test.js. This will create a SVG diagram and write the contents to stdout.

const ChordySvg = require("chordy-svg");

const voicing = {
  name: "Cmaj7",
  shape: "x35453",
  root: 2,
  comment: "",
};

const svg = new ChordySvg(voicing);
const data = svg.svg();
process.stdout.write(data);

If you've cloned the library from GitHub instead of using NPM, you'll need to replace require('chordy-svg') with the correct path, e.g require('./chordy-svg')

Create SVG and write to new file output.svg

node test.js > output.svg

Browser Example

chordy-svg.js is found in dist/ and can be built with npm build.

<div id="image"></div>

<script src="https://cdn.jsdelivr.net/npm/@tonaljs/[email protected]/browser/tonal.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/svg.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chordy-svg@latest/dist/chordy-svg.min.js"></script>
<script type="text/javascript">
  // create new svg diagram
  var element = document.getElementById("image");
  var svg = new ChordySvg({ name: "Cmaj7", shape: "x35453", root: 2, comment: "Test comment" }, { target: element });
</script>

Input

In the example above, we used:

const voicing = {
  name: "Cmaj7",
  shape: "x35453",
  root: 2,
  comment: "",
};

The properties for this object are:

  • name is the name of the chord and will be displayed as a title in the SVG
  • shape is the shape of the chord, starting from the lowest / thickest string.
    • x: muted or skipped string.
    • 0: open string (open strings not properly tested yet)
    • [0-9a-f]: hexadecimal value refers to fret position. e.g b refers to fret position 11. Only up to fret position 15 (hex f) is permitted.
  • root is the root string. 0 refers to the lowest frequency / thickest string. On 6 string guitars with EADGBE tuning, 5 refers to the high E string. In the generated diagram, the dot for this position will be coloured red by default.

A second parameter to the ChordySvg() constructor may be used to set more custom parameters (documentation not complete yet).

Development and Testing

For development and building from source, clone Git repo

git clone https://github.com/andygock/chordy-svg
cd chordy-svg

Run babel script which watches input file and writes to test/dist/chordy-svg.js

npm run start

You can view live updated output of browser with browser-sync

npm run serve:start

You can run further tests with Mocha for plain Node usage (this uses dist/chordy-svg.js).

npm run mocha

You can view live updated directory listing of mocha test output with.

npm run serve:mocha

The serve:* scripts are usually done concurrently with the start or mocha scripts.

Once all is tested well, build to dist/chordy-svg.js, ready for publishing to npm.

npm run build

Run npm run clean to delete all built files and generated SVG images from test/dist/, test/output/ and dist/

Notes

Not fully tested for chords with open strings.