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

https://github.com/sclorentz/my_js_test_runtime

third test to Cb, this one, again, related to rust. But this time I'm trying to include "backwards" compatibilities with the original version
https://github.com/sclorentz/my_js_test_runtime

deno js js-runtime programming-language rust ts

Last synced: 5 months ago
JSON representation

third test to Cb, this one, again, related to rust. But this time I'm trying to include "backwards" compatibilities with the original version

Awesome Lists containing this project

README

          

# JS-runtime-test

## Manage windows

```javascript
let window = new Window("My Window").create();
```

## Custom protocol for console

```javascript
await console
.clear()
.log("hello world!\n")
.input("what's your name? ")
.then(name => console.log(`hello ${name}!`))
```