LinuxCommandLibrary

nest

Command-line tool to initialize, develop, and maintain Nest applications.

TLDR

Display information about installed nest version

$ nest info
copy


Create a new NestJS project in a directory of the same name
$ nest new [project_name]
copy


Build a specific NestJS project
$ nest build [project_name]
copy


Run a specific NestJS project
$ nest start [project_name]
copy


Import a library into the current NestJS project
$ nest add [library_name]
copy

Copied to clipboard