plugins icon indicating copy to clipboard operation
plugins copied to clipboard

A collection of plugins for Goa.

Results 6 plugins issues
Sort by recently updated
recently updated
newest added

s.logger has type *log.Logger, which is a wrapper for *zap.SugaredLogger. Since the rest of the system is also using the same wrapper, everything is fine... until: ``` logger := s.logger.With(...

If the output directory is customized, the content to `gen/docs.json` keeps getting appended every time the code is generated. I see we have this code [here](https://github.com/goadesign/plugins/blob/v3/docs/generate.go#L37-L46) that attempts to delete...

CORS does not work for GOA generated grpc servers. I'm trying to use the goa generated server as a backend for the grpc-web framework. Since the grpc-web framework issues calls...

Here https://github.com/goadesign/plugins/tree/v3/goakit#example

log plugin is not working. expect - service.go ```go // `service.go` generated by goa `example` command. package service import ( "{module}/gen/log" ) ``` now - service.go ```go // `service.go` generated...

I'm building an HTTP REST service with goa and the CORS plugin. **My question:** Is it possible to set the CORS origin at runtime? I don't want to bake the...