From 2c50726c0fb1647b531a9f9767c3619cba8de934 Mon Sep 17 00:00:00 2001 From: hellojukay Date: Fri, 21 Oct 2022 10:13:52 +0800 Subject: [PATCH] nest: add page (#9153) --- pages/common/nest.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/nest.md diff --git a/pages/common/nest.md b/pages/common/nest.md new file mode 100644 index 000000000..55a0ea736 --- /dev/null +++ b/pages/common/nest.md @@ -0,0 +1,24 @@ +# nest + +> Command-line tool to initialize, develop, and maintain Nest applications. +> More information: . + +- Display information about installed nest version: + +`nest info` + +- Create a new NestJS project in a directory of the same name: + +`nest new {{project_name}}` + +- Build a specific NestJS project: + +`nest build {{project_name}}` + +- Run a specific NestJS project: + +`nest start {{project_name}}` + +- Import a library into the current NestJS project: + +`nest add {{library_name}}`