oppressor - streaming http compression response negotiator.
streaming http compression response negotiator
$ sbt clean publish-local
Before running the tests the first time, you must ensure the npm packages are installed:
$ npm install
Then you can run the tests:
$ sbt test
import io.scalajs.nodejs.fs.Fs
import io.scalajs.nodejs.http._
import io.scalajs.npm.oppressor._
val server = Http.createServer((req: ClientRequest, res: ServerResponse) => {
Fs.createReadStream("./src/test/resources/data.txt")
.pipe(Oppressor(req))
.pipe(res)
})
server.listen(8000)
To add the Oppressor
binding to your project, add the following to your build.sbt:
libraryDependencies += "io.scalajs.npm" %%% "oppressor" % "0.5.0"
Optionally, you may add the Sonatype Repository resolver:
resolvers += Resolver.sonatypeRepo("releases")