The big list of npm modules

List of relevant npm modules

view on github

Format npm urls with vscode find/replace and regex :

// search for irrelevant end-of-url characters
/^(?<url>.+)(?:\?\|#).+$/
// replace the matching results to remove the above
'$1'
// extract relevant components from the trimmed urls  
/^(?<package>https:\/\/www.npmjs.com\/package\/(?<name>[^\/]+))$/
// replace the matching results to format the above   
'- [$2]($1)'

List of npm modules considered as being "of any interest" :