@novopattern/dream-poc v0.2.1
DReAM
Developer Resources Auto-configuration Manager CLI
DReAM is an experimental tool that manages external resources you use in your app like databases.
For example, you can add a database like mongo in your project just by running: dream add mongo
and dream will deploy an instance of mongodb, inject the necessary environment variables and install
necessary client libraries preconfigured to connect to the previously deployed database without you having
to manage a single connection string.
You can just start inserting and reading data.
For now, dream is experimental and work only for mongo as a proof of concept. DReAM is designed to work with any language, but for now, it only works with nodejs and go.
Usage
$ npm install -g @novopattern/dream-poc
$ dream COMMAND
running command...
$ dream (--version)
@novopattern/dream-poc/0.2.1 darwin-x64 node-v18.0.0
$ dream --help [COMMAND]
USAGE
$ dream COMMAND
...Commands
dream add PACKAGEdream help [COMMAND]dream init [FILE]dream pluginsdream plugins:install PLUGIN...dream plugins:inspect PLUGIN...dream plugins:install PLUGIN...dream plugins:link PLUGINdream plugins:uninstall PLUGIN...dream plugins:uninstall PLUGIN...dream plugins:uninstall PLUGIN...dream plugins updatedream remove PACKAGE
dream add PACKAGE
add a package
USAGE
$ dream add [PACKAGE]
DESCRIPTION
add a package
EXAMPLES
$ dream add mongoSee code: dist/commands/add.ts
dream help [COMMAND]
Display help for dream.
USAGE
$ dream help [COMMAND] [-n]
ARGUMENTS
COMMAND Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for dream.See code: @oclif/plugin-help
dream init [FILE]
initialize dream in a project
USAGE
$ dream init [FILE] -p npm|yarn|go
FLAGS
-p, --package-manager=<option> (required) project's package manager
<options: npm|yarn|go>
DESCRIPTION
initialize dream in a project
EXAMPLES
$ dream init -p yarnSee code: dist/commands/init.ts
dream plugins
List installed plugins.
USAGE
$ dream plugins [--core]
FLAGS
--core Show core plugins.
DESCRIPTION
List installed plugins.
EXAMPLES
$ dream pluginsSee code: @oclif/plugin-plugins
dream plugins:install PLUGIN...
Installs a plugin into the CLI.
USAGE
$ dream plugins:install PLUGIN...
ARGUMENTS
PLUGIN Plugin to install.
FLAGS
-f, --force Run yarn install with force flag.
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Installs a plugin into the CLI.
Can be installed from npm or a git url.
Installation of a user-installed plugin will override a core plugin.
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
the CLI without the need to patch and update the whole CLI.
ALIASES
$ dream plugins add
EXAMPLES
$ dream plugins:install myplugin
$ dream plugins:install https://github.com/someuser/someplugin
$ dream plugins:install someuser/someplugindream plugins:inspect PLUGIN...
Displays installation properties of a plugin.
USAGE
$ dream plugins:inspect PLUGIN...
ARGUMENTS
PLUGIN [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Displays installation properties of a plugin.
EXAMPLES
$ dream plugins:inspect myplugindream plugins:install PLUGIN...
Installs a plugin into the CLI.
USAGE
$ dream plugins:install PLUGIN...
ARGUMENTS
PLUGIN Plugin to install.
FLAGS
-f, --force Run yarn install with force flag.
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Installs a plugin into the CLI.
Can be installed from npm or a git url.
Installation of a user-installed plugin will override a core plugin.
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
the CLI without the need to patch and update the whole CLI.
ALIASES
$ dream plugins add
EXAMPLES
$ dream plugins:install myplugin
$ dream plugins:install https://github.com/someuser/someplugin
$ dream plugins:install someuser/someplugindream plugins:link PLUGIN
Links a plugin into the CLI for development.
USAGE
$ dream plugins:link PLUGIN
ARGUMENTS
PATH [default: .] path to plugin
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Links a plugin into the CLI for development.
Installation of a linked plugin will override a user-installed or core plugin.
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
command will override the user-installed or core plugin implementation. This is useful for development work.
EXAMPLES
$ dream plugins:link myplugindream plugins:uninstall PLUGIN...
Removes a plugin from the CLI.
USAGE
$ dream plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ dream plugins unlink
$ dream plugins removedream plugins:uninstall PLUGIN...
Removes a plugin from the CLI.
USAGE
$ dream plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ dream plugins unlink
$ dream plugins removedream plugins:uninstall PLUGIN...
Removes a plugin from the CLI.
USAGE
$ dream plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ dream plugins unlink
$ dream plugins removedream plugins update
Update installed plugins.
USAGE
$ dream plugins update [-h] [-v]
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Update installed plugins.dream remove PACKAGE
remove a package
USAGE
$ dream remove [PACKAGE]
DESCRIPTION
remove a package
EXAMPLES
$ dream remove mongoSee code: dist/commands/remove.ts