This has lots of possible use cases, including dealing with weird JSON coming back from LLMs or non-compliant JSON spat out by poorly built software. You can use it from Node, as a CLI tool, or try a basic version online.
Jos de Jong
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥5❤2👍1
CHALLENGE
async function fetchData() {
return 'Data loaded';
}
async function processData() {
console.log('Starting...');
try {
const result = fetchData();
console.log(result);
console.log(await result);
return 'Processing complete';
} catch (error) {
return 'Error occurred';
} finally {
console.log('Cleanup');
}
}
processData().then(result => console.log(result));
What is the output?
Anonymous Quiz
35%
Starting... Promise { 'Data loaded' } Data loaded Cleanup Processing complete
30%
Starting... Promise { <pending> } Cleanup Processing complete
19%
Starting... Promise { <pending> } Data loaded Cleanup Processing complete
16%
Starting... Data loaded Cleanup Processing complete
❤1👍1🔥1
An open source (though a commercial version is available) Node and Electron-based desktop app for crafting and testing HTTP requests, complex and simple. Think of it as a lightweight alternative to something like Postman.
Anoop M D, Anusree P S and Contributors
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2❤1