apache-protoc-gen-dubbo-web
v0.0.10
Published
This package is deprecated.
Downloads
11
Readme
apache-protoc-gen-dubbo-web
This package is deprecated.
The code generator protoc-gen-dubbo-web
can now be used for Dubbo on the
Web, and for Dubbo on Node.js.
For a better fit, we have renamed it to protoc-gen-dubbo-web
in
dubbo-js.
The generated code is actually exactly the same, so it is not necessary to update right away, but we are not going to maintain this package anymore.
Switching to apache-protoc-gen-dubbo-web is straight-forward:
npm remove apache-protoc-gen-dubbo-es
npm install apache-protoc-gen-dubbo-web
Update your buf.gen.yaml
:
version: v1
plugins:
- plugin: es
out: src/gen
- - plugin: connect-web
+ - plugin: connect-es
out: src/gen
And your import paths:
- import { ElizaService } from "gen/eliza_dubboweb";
+ import { ElizaService } from "gen/eliza_dubbo";