mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 11:55:26 +00:00
* use parsed options while signing * update project layout to v3 * fix .gitignore * remove example template * misc updates * bump tlsx version * hide template sig warning with env * js: retain value while using log * fix nil pointer derefernce * misc doc update --------- Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
15 lines
821 B
Markdown
15 lines
821 B
Markdown
## bindgen (aka bindings generator)
|
|
|
|
bindgen is a tool that automatically generated bindings for native go packages with 'goja'
|
|
|
|
Native Go packages are available [here](../../libs/)
|
|
|
|
Generated Output is available [here](../../generated/)
|
|
|
|
bindgen generates 3 different types of outputs
|
|
|
|
- `go` => this directory contains corresponding goja bindings (actual bindings code) ex: [kerberos.go](../../generated/go/libkerberos/kerberos.go)
|
|
- `js` => this is more of a javascript **representation** of all exposed functions and types etc in javascript ex: [kerberos.js](../../generated/js/libkerberos/kerberos.js) and does not server any functional purpose other than reference
|
|
- `markdown` => autogenerated markdown documentation for each library / package ex: [kerberos.md](../../generated/markdown/libkerberos/kerberos.md)
|
|
|