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
- Host: GitHub
- URL: https://github.com/sclorentz/my_js_test_runtime
- Owner: SCLorentz
- Created: 2024-12-19T12:10:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-11T15:56:21.000Z (7 months ago)
- Last Synced: 2025-07-11T17:56:57.662Z (7 months ago)
- Topics: deno, js, js-runtime, programming-language, rust, ts
- Language: Rust
- Homepage:
- Size: 5.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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}!`))
```