tanxium 0.2.0

Embeddable JavaScript/TypeScript runtime for Yasumu powered by Deno
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Tanxium.setRuntimeData({
    request: {
        url: 'https://example.com',
        method: 'GET',
        headers: {
            'User-Agent': 'Tanxium/1.0.0',
        },
    },
    response: {
        status: 200,
        headers: {
            'Content-Type': 'text/html',
        },
        body: '<h1>Hello, World!</h1>',
    },
});