ChatGPT gave me something like
const express = require('express').default;
const ziti = require('@openziti/ziti-sdk-nodejs').default;
// Your existing ExpressJS setup
const app = express();
// ... (other middleware, routes, etc.)
// Wrap your existing ExpressJS app with Ziti
const zitiApp = ziti.express(app, 'yourZitiServiceName');
// Listen
zitiApp.listen(3000, () => {
console.log('Server running on http://localhost:3000/');
});
when I told it I want to integrate into Owasp Juice Shop app. But is there a more concrete example.
ChatGPT gave me something like
when I told it I want to integrate into Owasp Juice Shop app. But is there a more concrete example.