@sklyerx/exts
v1.0.1
Published
A nodejs cli to create fast and powerfull express-typescript api
Downloads
1
Maintainers
Readme
Getting Started
run the following to download the package
$ npm i -g @sklyerx/extsafter installing the package and navigating to the directory you want to create your project in run
$ exts directoryName --git true/false --download true/false --npm true/falseif you get an error because of "lack of permission". Run the command with the sudo class behind it
Ex:
$ sudo exts directoryName --git boolean --download boolean --npm booleanVideo examples
Create

Generate new route with param

Generate new route without param

Explaning params
directoryNameis the name of the directory/project that you are going to develop your app in.--gitthe --git param that you add to the cli is going to initialize an empty git repo. This is enabled by default--downloadthe --download param that you add to the cli is going to download the npm modules that come with the package.--npmFinally when you add the npm param you can use npm or yarn as your package manager.
Couple things to know
this npm package is not a framework or a library! it is not a replacement for express or any of the expressjs frameworks.
What this tool actually is:
- a generator tool that creates apis
- cli tool
