Enigma command line tool
npm install @enigmagtm/cliHow to get started with Enigma
- Install [Node.js] which includes [Node Package Manager][npm]
Install the Enigma CLI globally:
```
npm install -g @enigma/cli
Create new application:
``
ngm new PROJECT_NAME
After create the application, you should install one of the following database packages so your application can run, detailed instructions at the installation section [Knexjs.org][knex]
Run the application:
``
cd PROJECT_NAME
npm run start
Create a module for resource controllers:
``
ngm g m DIRECTORY [MODULE]
Create a resource controller:
```
ngm g c DIRECTORY SCHEMA [TABLE]
[Node.js]: https://nodejs.org/
[npm]: https://www.npmjs.com/get-npm
[knex]: https://knexjs.org/#Installation-node