mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 20:15:24 +00:00
* introduce typescript files generation using ast + tmpl * feat valid ts with scraping * feat remove old logic + tsdocs for all modules * fix ikev and related bugs * typescript docs for js modules * lint,build + ldap realm fix * go mod tidy * fix named imports ast parsing * fix ast code generation errors * complete support for ts files generation * support go global/const in ts docs * updated template * feat: typescript using go code generation * nuke jsdoc generator * update generated ts dir structure * fix multifile ts gen issue * fix panic in ts code gen * fix test * update docs of js libs * feat: add doc+example for every js class,function,method * fix missing quotes in ikev example --------- Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io>
32 lines
1015 B
Markdown
32 lines
1015 B
Markdown
## devtools
|
|
|
|
devtools contains tools and scripts to automate booring tasks related to javascript layer/ packages.
|
|
|
|
### bindgen
|
|
|
|
[bindgen](./bindgen/README.md) is a tool that automatically generated bindings for native go packages with 'goja'
|
|
|
|
|
|
### scrapefuncs
|
|
|
|
[scrapefuncs](./scrapefuncs/README.md) is a tool to scrapes all helper functions exposed in javascript with help of go/ast and generates a js file with jsdoc comments using LLM (OpenAI)
|
|
|
|
|
|
### Generating API Reference (aka static site using javascript files using jsdoc)
|
|
|
|
```console
|
|
jsdoc -R [Homepage.md] -r -d api_reference -t [optional: jsdoc theme to use] generated/js
|
|
```
|
|
|
|
generated static site will be available at `api_reference/` directory and can be verified using simplehttpserver
|
|
|
|
```console
|
|
simplehttpserver
|
|
```
|
|
|
|
and then open `http://localhost:8000/` in browser
|
|
|
|
|
|
### Notes
|
|
|
|
we currently use [clean-jsdoc-theme](https://www.npmjs.com/package/clean-jsdoc-theme) demo at [sample-jsproto-docs/](https://projectdiscovery.github.io/js-proto-docs/) |