Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 282 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 282 Bytes

Microservice Base

How to use

import { createServer } from '@cashfarm/microservice';

const server = createServer({
  // all attributes are optional
  // the values here are the default values
  enableCors: true,
  debug: true,
  port: 3000
});
Server.start();