@veramo/cli full functionalities #774
-
HI, I am new to SSI and want to explore workflow of Veramo.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can use veramo CLI to execute any method that the veramo agent exposes. These methods can be executed as terminal commands, using the If you are already developing a Node.js app, then it makes more sense to use Veramo as a library inside your app. One thing that may not be obvious at first glance is that Veramo is not limited to the plugins that are provided here. I'm not familiar with all the concepts laid out in your diagram, but I think that all the white blocks are possible using existing Veramo plugins (either CLI, or server, or as a library.. it is up to you how you use it). Veramo is a new project and it is evolving, as there are lots of things to be improved and implemented. |
Beta Was this translation helpful? Give feedback.
You can use veramo CLI to execute any method that the veramo agent exposes. These methods can be executed as terminal commands, using the
veramo execute
command, or they can be called through OpenAPI, when the agent is started as a server using theveramo server
command.This is very useful if you are developing an application in a different stack than Node.js, because you can make use of existing javascript plugins and treat veramo as an external service.
Veramo CLI can also be used with packages and plugins from other projects, so you are not limited to the transitive dependencies of the
@veramo/cli
package.If you are already developing a Node.js app, then it makes more sense to use Ve…