Coder Social home page Coder Social logo

npme-slug-validate's Introduction

npme-slug-validate

Validates if a text string is a valid npmE slug.

Format

Requirements for a valid npmE slug mirror the recommendation for a domain name label as outlined in Appendix 1 of RFC 883. The requirements are as follows:

  • minimum of 3 characters in length
  • maximum of 63 characters in length
  • contains only alphanumeric ASCII characters or a hyphen ('-')
  • only contains lower-case characters
  • begins with an alpha character
  • ends with an alphanumeric character

Examples

Valid Slugs

  • down
  • what-4
  • up-2-no-good

Invalid Slugs

  • up
  • low-
  • -away
  • 1-neat-trick

Usage

const {validate: validateSlug} = require('npme-slug-validate')

function validateEnterpriseSlug (eSlug) {
  const err = validateSlug(eSlug)

  return err ? Promise.reject(err) : Promise.resolve(eSlug)
}

npme-slug-validate's People

Contributors

joeledwards avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.