Node Middleware
Qwik City Node middleware allows you to connect Qwik City to a Node.js server which uses the common middleware functionality. Some Node servers include:
Installation
To integrate the node adapter, use the add command:
- For Express:
npm run qwik add express- For Fastify
npm run qwik add fastifyProduction build
To build the application for production, use the build command, this command will automatically run npm run build.server and npm run build.client:
npm run buildDev serve
To deploy the application for development:
npm run serveProduction deploy
Since you are choosing Node, here you are in your own, after running npm run build:
- The
distfolder will be created including all the static files. - The
serverfolder will be created including all node server files.
In order to deploy the server, you need to run the server/entry.[server].js file in the server of your choice, where [server] can be express or fastify.
It's very important to correctly configure the ORIGIN env variable, which is used to check against CSRF attacks. The origin must match the origin of the client application.
For example, if you plan to deploy your application to
https://example.com/app, then you need to set theORIGINenvironment variable tohttps://example.com.ORIGIN=https://example.com node server/entry.express
CSRF Protection
By default, all Qwik City applications are protected against CSRF attacks for all POST, PATCH, DELETE form submits.
This protection is enabled by default and it's the reason why you need to set the ORIGIN environment variable when deploying your application for production.
If you want to disable CSRF protection, you can set checkOrigin: false in the createQwikCity() options in src/entry.express.tsx:
// ...
const { router, notFound, staticFile } = createQwikCity({
render,
qwikCityPlan,
manifest,
checkOrigin: false,
});
// ...