Unable to create a new project with the Nest CLI

2019-08-23 11:51发布

I am following this tutorial to create a nest project. I have installed Nest CLI using this command:

npm i -g @nestjs/cli

enter image description here

I have checked the list of packages installed locally using the following command and found that it was successfully installed:

npm list -g --depth 0

enter image description here

but when I tried to create a new project using following command it gave me an error:

nest new project-name

Error:

nest : The term 'nest' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

At line:1 char:1

  • nest new project-name

  • 
    + CategoryInfo          : ObjectNotFound: (nest:String) [], CommandNotFoundException
    
    + FullyQualifiedErrorId : CommandNotFoundException
    

Screenshot:

enter image description here

Why it is so? What's wrong with it? Can someone assist me in identifying the issue?

Thanks in advance

1条回答
Evening l夕情丶
2楼-- · 2019-08-23 12:28

In most cases, it is better to use npx instead of installing global npm packages, since you'll always use the latest version and not clutter your file system with things you don't need often.

Just replace nest with npx @nestjs/cli for any command:

npx @nestjs/cli new project-name
查看更多
登录 后发表回答