https://github.com/t-vk/chord-collection
Simple collection of guitar chords in a javascript-friendly object and in json.
https://github.com/t-vk/chord-collection
chords collection database finger fingerings guitar javascript object positions
Last synced: 2 months ago
JSON representation
Simple collection of guitar chords in a javascript-friendly object and in json.
- Host: GitHub
- URL: https://github.com/t-vk/chord-collection
- Owner: T-vK
- Created: 2017-09-14T19:49:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-01T23:05:12.000Z (over 5 years ago)
- Last Synced: 2025-04-11T06:18:13.490Z (2 months ago)
- Topics: chords, collection, database, finger, fingerings, guitar, javascript, object, positions
- Homepage:
- Size: 1.09 MB
- Stars: 37
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The chords are stored in the following JSON format:
```
{
"C#":[{
"positions": ["x","4","6","6","6","4"],
"fingerings": [["0","1","3","3","3","1"], ["0","1","2","3","4","1"]]
},{
"positions": ["9","11","11","10","9","9"],
"fingerings":[["1","3","4","2","1","1"]]
}, ...],
"C#m":[{
"positions":["x","4","6","6","5","4"],
"fingerings":[["0","1","3","4","2","1"]]
},{
"positions":["9","11","11","9","9","9"],
"fingerings":[["1","3","4","1","1","1"]]
}, ...],
...
}
```For a usage example please refer to my [Chord-Draw](https://github.com/t-vk/Chord-Draw.git) project.
If you want a complete list of all chords with all it's shapes, then go ahead and use `chords.complete.json` (~ 13.5MB !!!) or `chords.complete.js` (~ 13.5MB !!!).
If you want a list of all chords and one shape per chord is enough for you, then you should use `chords.json` (~ 1.2MB !) or `chords.js` (~ 1.2MB !).This chord library has been created with the help of jguitar.com. Which is a really awesome website that goes far beyond what this project could offer. You should defintiely check it out and consider supporting them!
## License
The source is licensed under the GPL.