Generate your full Serverless Web Application in seconds with daswag cli
This is a framework for building Web Application using only Serverless technologies.
See the docs for more information.
The Getting Started tutorial is a step-by-step guide to introduce you to daSWAG. If you have not developed anything using Serverless technologies, this Getting Started is a great place to get started.
$ npm install -g daswag-cli
$ daswag COMMAND
running command...
$ daswag (-v|--version|version)
daswag-cli/1.0.0-beta darwin-x64 node-v10.15.1
$ daswag --help [COMMAND]
USAGE
$ daswag COMMAND
...
daswag add
daswag add:api
daswag add:client
daswag autocomplete [SHELL]
daswag doc [KEYWORD]
daswag help [COMMAND]
daswag new
add a new component to your project
USAGE
$ daswag add
See code: src/commands/add/index.ts
Add an API based service
USAGE
$ daswag add:api
See code: src/commands/add/api.ts
Add a client interface
USAGE
$ daswag add:client
See code: src/commands/add/client.ts
display autocomplete installation instructions
USAGE
$ daswag autocomplete [SHELL]
ARGUMENTS
SHELL shell type
OPTIONS
-r, --refresh-cache Refresh cache (ignores displaying instructions)
EXAMPLES
$ daswag autocomplete
$ daswag autocomplete bash
$ daswag autocomplete zsh
$ daswag autocomplete --refresh-cache
See code: @oclif/plugin-autocomplete
opens the official daSWAG documentation (daswag.tech/documentation) in a browser, and searches for a given keyword.
USAGE
$ daswag doc [KEYWORD]
OPTIONS
-s, --search Search on Google
See code: src/commands/doc/index.ts
display help for daswag
USAGE
$ daswag help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
creates and initialize a new daSWAG project.
USAGE
$ daswag new
See code: src/commands/new/index.ts