"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > create-next-app validates your app name using this package

create-next-app validates your app name using this package

Published on 2024-11-07
Browse:999

In this article, we analyze how create-next-app validates your project name.

validate: (name) => {
 const validation = validateNpmName(basename(resolve(name)))
 if (validation.valid) {
   return true
 }
 return 'Invalid project name: '   validation.problems[0]
},

Have you tried naming your project with spaces in it when using create-next-app command? if you have done so, it won’t allow spaces in your project because it follows certain principles when it comes to naming your project.

So what are these naming convention rules?

validateNpmName function

If you check this create-next-app/index.ts, it calls a function named validateNpmName. This is imported from helpers/validate-pkg.ts

create-next-app validates your app name using this package

This function is straight forward, calls a function named validateProjectName that is imported from validate-npm-package-name.

Documentation says that if a name is valid, you will get the below object back:

{
 validForNewPackages: true,
 validForOldPackages: true
}

What makes a name valid? let’s check the documentation again. Documentataion provides these Naming rules:

  1. package name length should be greater than zero

  2. all the characters in the package name must be lowercase i.e., no uppercase or mixed case names are allowed

  3. package name can consist of hyphens

  4. package name must not contain any non-url-safe characters (since name ends up being part of a URL)

  5. package name should not start with . or _

  6. package name should not contain any spaces

  7. package name should not contain any of the following characters: ~)(‘!*

  8. package name cannot be the same as a node.js/io.js core module nor a reserved/blacklisted name. For example, the following names are invalid:

    — http

    — stream

    — node_modules

    — favicon.ico

  9. package name length cannot exceed 214

These are the rules you should keep in mind when naming your Next.js project.

About us:

At Think Throo, we are on a mission to teach the advanced codebase architectural concepts used in open-source projects.

10x your coding skills by practising advanced architectural concepts in Next.js/React, learn the best practices and build production-grade projects.

We are open source — https://github.com/thinkthroo/thinkthroo (Do give us a star!)

We also provide web development and technical writing services. Reach out to us at [email protected] to learn more!

References:

1. https://github.com/vercel/next.js/blob/canary/packages/create-next-app/index.ts#L162

2. https://github.com/vercel/next.js/blob/canary/packages/create-next-app/helpers/validate-pkg.ts#L13

3. https://www.npmjs.com/package/validate-npm-package-name

4. https://github.com/npm/validate-npm-package-name/tree/main



Release Statement This article is reproduced at: https://dev.to/thinkthroo/create-next-app-validates-your-app-name-using-this-package-3kpg?1 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3