Application that yada yada yada.
npm install @applitools/eg-frpcApplication that yada yada yada.
* This package is meant to be used as a docker container, passing the environment variables as defined below.
``sh`
docker run -d applitools/eg-frpc
* Alternatively, it can be run using ./scripts/run-eg-frpc.js,
passing the environment variables as defined below.
`sh`
npm install -g @applitools/eg-frpc
run-eg-frpc.js
* Alternatively, you can import it and create the app (see below), passing it the configuration as defined below.
`sh`
npm install @applitools/eg-frpc
* Yada: yada yada
A JSON with the following fields:
* yada: yada yada
* YADA_YADA: yada
`js
const createApp = require('@applitools/eg-frpc')
// configuration options aee the same as the above corresponding environment variables
const app = createApp({})
// app is an express app. Use listen to start it in the usual way
app.listen(/.../)
``