0.0.4 • Published 3 years ago

@restyjs/config v0.0.4

Weekly downloads
1,530
License
MIT
Repository
github
Last release
3 years ago

@restyjs/config

Configuration module for resty.js.

import resty from "@restyjs/core";
import { Configuration } from "@restyjs/config";

const app = resty({
  controllers: [],
  providers: [
    // will load .env file. for custom env file pass options param.
    Configuration(),
  ],
});

app.listen(8080);