BrowserOps Journey Preflight

Generate a route-check script and validate target URLs before sending a real run request to BrowserOps.

Instantiate locally
route-check.js
const target = 'https://sandbox.platphormnews.com';
const url = new URL(target);
console.log(JSON.stringify({valid: url.hostname.endsWith('.platphormnews.com'), target}, null, 2));
Help