├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── banner.png ├── examples ├── basic.ts ├── bind.ts ├── multiple.ts ├── todoapp │ ├── app.ts │ └── ui.html └── webserver │ ├── index.ts │ └── worker.ts ├── package.json ├── scripts ├── build.bat ├── build.ts └── hidecmd.ts ├── setupARM64.sh ├── src ├── ffi.ts ├── index.ts └── webview.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bun.lock -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/banner.png -------------------------------------------------------------------------------- /examples/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/examples/basic.ts -------------------------------------------------------------------------------- /examples/bind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/examples/bind.ts -------------------------------------------------------------------------------- /examples/multiple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/examples/multiple.ts -------------------------------------------------------------------------------- /examples/todoapp/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/examples/todoapp/app.ts -------------------------------------------------------------------------------- /examples/todoapp/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/examples/todoapp/ui.html -------------------------------------------------------------------------------- /examples/webserver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/examples/webserver/index.ts -------------------------------------------------------------------------------- /examples/webserver/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/examples/webserver/worker.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/scripts/build.bat -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/hidecmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/scripts/hidecmd.ts -------------------------------------------------------------------------------- /setupARM64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/setupARM64.sh -------------------------------------------------------------------------------- /src/ffi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/src/ffi.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/webview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/src/webview.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr1ckydev/webview-bun/HEAD/tsconfig.json --------------------------------------------------------------------------------