Hybrid JS/LPC with hot-reloadable/clonable distributed objects and api's:
=======================================================
HAUKI-GEM-LAB // GDLPC-JS REPL (V5 - Universal Web Edition)
Features: Swagger Autodiscovery, MeshRPC, Regex Hardened
=======================================================
GDLPC> api = await bind_api("https://petstore.swagger.io/v2/swagger.json")
[SYS] Fetching OpenAPI Schema from: https://petstore.swagger.io/v2/swagger.json
=> SwaggerAPI_GhostProxy (..)
GDLPC> pet = await api->getPetById(([ "petId": 1 ]))
=> { code: 1, type: 'error', message: 'Pet not found' }
GDLPC> pet = await api->getPetById(([ "petId": 2 ]))
=> {
id: 2,
category: { id: 2, name: 'ravi' },
name: 'doggie',
photoUrls: [ 'string' ],
tags: [ { id: 2, name: 'bha' } ],
status: 'pending'
}
GDLPC>