This release contains one new feature: support for adding additional Link attributes such as "nopush" and "x-http2-push-only" that may be understood by downstream intermediaries.
express()
.use(netjet({
directives: ['nopush']
}))
.use(express.static(root))
.listen(1337);
Thanks to @SamyPesse for the PR. 🎉
Features
- support optional preload attributes (7900bd52)