https://github.com/pocketbase/tygoja
Experimental helper library for generating TypeScript declarations from Go code
https://github.com/pocketbase/tygoja
goja pocketbase typescript
Last synced: 6 months ago
JSON representation
Experimental helper library for generating TypeScript declarations from Go code
- Host: GitHub
- URL: https://github.com/pocketbase/tygoja
- Owner: pocketbase
- License: mit
- Created: 2023-06-18T19:57:58.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-07T18:48:33.000Z (7 months ago)
- Last Synced: 2025-04-16T11:04:32.129Z (6 months ago)
- Topics: goja, pocketbase, typescript
- Language: HTML
- Homepage:
- Size: 230 KB
- Stars: 15
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
(EXP) tygoja
[](https://pkg.go.dev/github.com/pocketbase/tygoja)
======================================================================**tygoja** is a small helper library for generating TypeScript declarations from Go code.
The generated typings are intended to be used as import helpers to provide [ambient TypeScript declarations](https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html) (aka. `.d.ts`) for [goja](https://github.com/dop251/goja) bindings.
> **⚠️ Don't use it directly in production! It is not tagged and may change without notice.**
>
> **It was created to semi-automate the documentation of the goja integration for PocketBase.**
>
> **Use it only as a reference or as a non-critical step in your dev pipeline.****tygoja** is a heavily modified fork of [tygo](https://github.com/gzuidhof/tygo) and extends its scope with:
- custom field and method names formatters
- types for interfaces (exported and unexported)
- types for exported interface methods
- types for exported struct methods
- types for exported package level functions (_must enable `PackageConfig.WithPackageFunctions`_)
- inheritance declarations for embeded structs (_embedded pointers are treated as values_)
- autoloading all unmapped argument and return types (_when possible_)
- applying the same [goja's rules](https://pkg.go.dev/github.com/dop251/goja#hdr-Nil) when resolving the return types of exported function and methods
- combining multiple packages typings in a single output
- generating all declarations in namespaces with the packages name (both unmapped and mapped)
- preserving comment block new lines
- converting Go comment code blocks to Markdown code blocks
- and others...Note that by default the generated typings are not generated with `export` since the intended usage is to map them to your custom goja bindings.
This mapping could be defined in the `Config.Heading` field usually with the `declare` keyword (eg. `declare let someGojaProp: app.Cache`).## Example
```go
package mainimport (
"log"
"os""github.com/pocketbase/tygoja"
)func main() {
gen := tygoja.New(tygoja.Config{
Packages: map[string][]string{
"github.com/pocketbase/tygoja/test/a": {"*"},
"github.com/pocketbase/tygoja/test/b": {"*"},
"github.com/pocketbase/tygoja/test/c": {"Example2", "Handler"},
},
Heading: `declare var $app: c.Handler; // bind other fields `,
WithPackageFunctions: true,
})result, err := gen.Generate()
if err != nil {
log.Fatal(err)
}if err := os.WriteFile("./types.d.ts", []byte(result), 0644); err != nil {
log.Fatal(err)
}
}
```You can also combine it with [typedoc](https://typedoc.org/) to create HTML/JSON docs from the generated declaration(s).
See the package `/test` directory for example output.
For a more detailed example you can also explore the [PocketBase's jsvm plugin](https://github.com/pocketbase/pocketbase/tree/develop/plugins/jsvm/internal/docs).
## Known issues and limitations
- Multiple versions of the same package may have unexpected declaration since all versions will be under the same namespace.
- For easier generation, it relies on TypeScript declarations merging, meaning that the generated types may not be very compact.
- Package level functions and constants, that are reserved JS identifier, are prefixed with underscore (eg. `_in()`).