언어/Javascript

JS 명령어

개발자국S2 2024. 4. 11. 16:41

nest g module boards 분해

nest : nest -> use nest

g : generate 

module -> schematic that I want to use

boards -> name of the schematic

 

nest g controller boards --no-spec

-> 컨트롤러 생성

--no-spec : 테스트를 위한 코드는 생성하지 않는다

 

반응형