fetch('/api/ngentest', {
method: 'POST',
headers: {'Accept': 'application/json', 'Content-Type': 'application/json'},
body: JSON.stringify({
typescript:
"@Component({selector: 'app-root'})" +
"class MyTestComponent {}"
})
}).then(resp => resp.json())
.then(resp => console.log(resp.output))