Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 236 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 236 Bytes

octopod-core

import { OctopodCore } from 'octopod-core'

const env = new OctopodCore({
    serverOptions: {
        port: 1818
    }
});
env.start((s) => {
    console.log('Started on port', s.address().port);
});