DEV Community

Cover image for How to install Nestjs CLI?
MELVIN GEORGE
MELVIN GEORGE

Posted on • Originally published at melvingeorge.me

How to install Nestjs CLI?

Originally posted here!

To install Nestjs CLI, you can use either one of the npm, yarn, or pnpm package managers.

Using npm package manager

To install it using the npm package manager, we can use the following command,

npm i -g @nestjs/cli
Enter fullscreen mode Exit fullscreen mode

Using yarn package manager

To install it using the yarn package manager, we can use the following command,

yarn global add @nestjs/cli
Enter fullscreen mode Exit fullscreen mode

Using pnpm package manager

To install it using the pnpm package manager, we can use the following command,

pnpm add -g @nestjs/cli
Enter fullscreen mode Exit fullscreen mode

That's all πŸ˜ƒ!

Feel free to share if you found this useful πŸ˜ƒ.


Top comments (0)