0.0.12 • Published 1 year ago

@statikly-stack/core v0.0.12

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

statikly core

const { server } = require('@statikly-stack/core');
const options = {
    logLevel: 'debug',
};
const host = 'localhost';
const port = 3000;
const app = await server(options);
await app.ready();
await app.listen({ port, host });