2019-08-20 18:42:52 +02:00
|
|
|
// node native scope
|
2019-08-20 22:26:44 +02:00
|
|
|
import * as http from 'http';
|
2019-08-20 18:42:52 +02:00
|
|
|
import * as https from 'https';
|
|
|
|
|
2019-08-20 22:26:44 +02:00
|
|
|
export { http, https };
|
2019-08-20 18:42:52 +02:00
|
|
|
|
|
|
|
// third party scope
|
|
|
|
import express from 'express';
|
2019-08-20 19:02:13 +02:00
|
|
|
import httpProxyMiddleware from 'http-proxy-middleware';
|
2019-08-20 18:42:52 +02:00
|
|
|
|
2019-08-20 18:43:15 +02:00
|
|
|
export { express, httpProxyMiddleware };
|