Python Package Name (PEP 508) in JS
Validate Python distribution package names per PEP 508: letters, digits, dots, underscores, hyphens.
Try it in the JS tester →Pattern
regexJS
^[A-Za-z0-9](?:[A-Za-z0-9._\-]*[A-Za-z0-9])?$JavaScript / ECMAScript code
jsJavaScript
const re = new RegExp("^[A-Za-z0-9](?:[A-Za-z0-9._\\-]*[A-Za-z0-9])?$", "");
const input = "requests";
const matches = [...input.matchAll(re)];
console.log(matches.map(m => m[0]));Uses `String.prototype.matchAll` for global iteration (Node 12+ / all modern browsers).
How the pattern works
Starts and ends with alphanumeric. Allows `_`, `.`, `-` in the middle. The single-char form (just an alphanumeric) is also valid. PEP 508 / PEP 503 normalize all of `_`, `.`, `-` to a single `-` for matching, but the underlying name on PyPI may use any.
Examples
Input
requestsMatches
requests
Input
django-rest-frameworkMatches
django-rest-framework
Input
_invalidNo match
—