An open API service indexing awesome lists of open source software.

https://github.com/ahgilak/popup

GUI for javascript standard popup's in deno.
https://github.com/ahgilak/popup

deno ffi

Last synced: 2 months ago
JSON representation

GUI for javascript standard popup's in deno.

Awesome Lists containing this project

README

          

# Popup

GUI for javascript standard popup's in [deno](https://deno.land/).

## Example

```javascript
import { alert, confirm } from "https://deno.land/x/popup/mod.ts";

if (confirm("Press a button!") == true) {
alert("You pressed OK!");
} else {
alert("You canceled!");
}
```

## Prerequisites

- on linux `gtk4` package is needed.