You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
414 B
14 lines
414 B
//Documents: https://ulixee.org/docs/cloud/modules/cloud-node#constructor |
|
import { CloudNode } from '@ulixee/cloud'; |
|
|
|
(async () => { |
|
const cloudNode = new CloudNode({ |
|
port: 1818, |
|
cloudType: 'private' |
|
}); |
|
await cloudNode.listen(); |
|
console.log(`CloudNode started on port ${await cloudNode.port}`); |
|
})().catch(error => { |
|
console.log('ERROR starting Ulixee CloudNode', error); |
|
process.exit(1); |
|
});
|
|
|