Table of Contents

Sample

// Handle GET echo
async function handle_get_echo(Req,Res,Extras){
    Res.end(JSON.stringify(Extras,null,4));
}