Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 640 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 640 Bytes

X-Spring-Cli

X-Spring-Cli

Download and install the cli tool. For doing that locally

npm install
npm link

after that you can create the controller and services from the command line

say-hello createController com.test.YourController
say-hello createService com.test.YourService

developing command line tools

  • use the chalk lib to colorize the logs
  • use the commander lib to create the command options
  • use the npm link to create a symbolic link stored in the /usr/local/bin/say-hello. Everytime you run 'say-hello' you executing the cli.

X-Spring-Cli