UNPKG
httpao
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
Simple, lighweight http server module
github.com/m0ren/httpao
m0ren/httpao
httpao
/
lib
/
index.js
8 lines
(5 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
dir = __dirname;
const
HTTP_CODES
=
require
(
`
${dir}
/codes.js`
);
const
InComing
=
require
(
`
${dir}
/incoming.js`
);
const
OutGoing
=
require
(
`
${dir}
/outgoing.js`
);
module
.
exports
= {
HTTP_CODES
,
InComing
,
OutGoing
};