0.1.0 • Published 7 years ago

@cashfarm/microservice v0.1.0

Weekly downloads
1
License
UNLICENSED
Repository
github
Last release
7 years ago

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();