
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
chord-md-parser
Advanced tools
Extracts chords and lirics from markdown python code
import { Extractor } from 'chord-md-parser';
let extractor = new Extractor({
md: {
filepath: null,
content: 'CONTENT'
}
})
let song = extractor.getSong()
song // -> array with only song lirics and tablatures/chords
Split roots and override roots from a chord string.
import { ChordParser } from 'chord-md-parser';
let parser = new ChordParser()
let chord = parser.parse('Bb7(9)/Cb');
// -----------------------
chord === { root: 'Bb',
flavors: '7(9)',
rootOverride: 'Cb' }
Print chord string from chord object.
import { ChordPrint } from 'chord-md-parser';
let printed = ChordPrint.print({
root: 'C',
flavors: 'M7',
rootOverride: 'G'
})
// -----------------------
printed === 'CM7/G'
Change root and
import { ChordTransposer } from 'chord-md-parser';
let transposer = new ChordTransposer()
let new_chord = transposer.transpose({
root: 'C',
flavors: 'M7',
rootOverride: 'G'
}, 1)
// -----------------------
new_chord === { root: 'C#', flavors: 'M7', rootOverride: 'G#', index: 3 }
Gets all chords from a string and convert to an array of chord objects.
import { ChordsConverter } from 'chord-md-parser';
let converter = new ChordsConverter()
let all_chords = converter.getChordsList(' A7+ E7/4 B7/9 Dm(7+)');
// -----------------------
all_chords:
[
{
chord:{
root: 'A',
flavors: '7+',
rootOverride: null
},
loc: { start: 5, size: 3 }
},
{
chord:{
root: 'E',
flavors: '7/4',
rootOverride: null
},
loc: { start: 12, size: 4 }
},
{
chord:{
root: 'B',
flavors: '7/9',
rootOverride: null
},
loc: { start: 22, size: 4 }
},
{
chord:{
root: 'D',
flavors: 'm(7+)',
rootOverride: null
},
loc: { start: 30, size: 6 }
}
]
# start azk [optional]
$ azk shell
# run all tests
$ npm test
# run all tests and watch
$ npm run watch
using:
FAQs
guitar chords parser from markdown files
We found that chord-md-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.