A lightweight HTTP framework for Typescript / JS, with zero dependencies
This is a fork, since the original appears unmaintained. This gets deployed into:
https://us-npm.pkg.dev/triptease-paid-search/tt-paid-search/
To publish: - Export an NPM_TOKEN that can publish to the NPM repo- this is in 1password - ./release.sh
>> read the docs :) <<
npm install --save http4js
- Example
- Latest features
- Contributing
- History and Design
- To dos
- Running HTTPS Server tests
- Sanity Testing Streaming
An example server and client
//define our routes
const routing = routes('GET', ".*", async (req: Req) => {
console.log(req);
return ResOf(Status.OK, 'OK');
})
//add csrf token header to every request and vary gzip to every response
const headerFilter = (handler: HttpHandler) => {
return asHandler(async (req: Req) => {
const response = await handler(req.withHeader(Headers.X_CSRF_TOKEN, Math.random()))
return response.withHeader(Headers.VARY, "gzip");
})
};
// start routing as a NativeHttpServer on port 3000
routing
.withFilter(headerFilter)
.asServer(HttpServer(3000))
.start();
// make an http request to a server and log the response
HttpClient(ReqOf(Method.GET, "http://httpbin.org/get")).then(res => console.log(res))
// make an http or https request and log the response
const client = new HttpClientHandler()
client.handle(ReqOf(Method.GET, "http://httpbin.org/get")).then(res => console.log(res))
client.handle(ReqOf(Method.GET, "https://httpbin.org/get")).then(res => console.log(res))
4.2.0: Breaking change: Most precise handler no longer beats first declared match. Fix: Composed routes filter as expected.
To find a matching handler for a Req
, we recurse "left to right and deepest
first" through nested routes, ie. routes attached to top level routes
using withRoutes(routes)
, ending finally with the top level routes e.g.
get('/', async()=> ResOf())
.withRoutes(
routes.withRoutes(furtherNestedRoutes)
)
furtherNestedRoutes
is traversed followed by routes
then finally the top
level routes.
Further docs here
Redirect
is now a static method Res.Redirect
as we provide a number of
convenience methods eg. Res.OK()
and Res.GatewayTimeout
.
We provide HttpServer(3000)
and HttpsServer(3000, certs)
as quick easy ways to provide a server.
See streaming docs for more info
NativeHttpServer
and HttpClient
stream in and out by default. A handle on
the stream is provided by req.bodyStream()
and a res
is streamed out if
a Res(200, readable)
is provided, i.e. a Readable
stream body.
In order to evolve the core library faster support for Express and Koa backends has been dropped. Happy to add back later.
I'd be very happy if you'd like to contribute :)
git clone git@github.com:TomShacham/http4js.git && \
cd http4js && \
npm i --save && \
./create-ssl-certs.sh && \
npm test
http4js is a port of http4k.
Early ideas and influence from Daniel Bodart's Utterly Idle
- example app
- withOptions on withPost
- generalise routing to an interface
- client side httpclient (from stu)
We need our own certs to run an HTTPS server locally.
These Commands get you most of the way, I altered them slightly for this script, that may work for you
./create-ssl-certs.sh
If not, follow these Instructions to create your own certificates in order to run an HTTPS server locally.
Then run
npm test
Create a big file
cat /dev/urandom | base64 >> bigfile.txt
# wait ...
# ^C
Start up a server and stream the file
get('/bigfile', async() => ResOf(200, fs.createReadStream('./bigfile.txt')))
.asServer()
.start();
Check the memory of usage of the process.
- If we are not streaming, then the whole file will be read into memory before the server responds, using lots of memory.
- If we are streaming then the memory usage should be much lower.