const http = require('http')
const server = http.createServer((req, res) => {
console.log('有请求过来了~~~')
})
let port = 3000
server.listen(port, () => {
console.log(`server start ${port}`)
})
If you would like to console log the code in the script node, you can use
koreDebugger.log(“”) and view the console output in the Analyse >> Task execution logs >> debug logs
Please let us know if you need any further information.
Regards,
Yoga Ramya,
Kore Support.