https://github.com/danigb/achord
Simple chord detection with js
https://github.com/danigb/achord
Last synced: 11 months ago
JSON representation
Simple chord detection with js
- Host: GitHub
- URL: https://github.com/danigb/achord
- Owner: danigb
- License: mit
- Created: 2015-05-21T12:09:31.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-22T11:05:48.000Z (about 11 years ago)
- Last Synced: 2025-01-29T04:05:27.328Z (over 1 year ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Chord
> It's just a chord
A Simple module to get the name of a chord from the intervals names:
```js
var achord = require('achord');
achord(['P1', 'm3', 'd5', 'm7']); // => m7b5
achord(['P1', 'M3', 'P5', 'M7']); // => Maj7
```
This is the reverse module of [d'accord](https://github.com/saebekassebil/daccord)
## License
MIT License