Express is a fast, unopinionated, minimalist web framework for Node.js. The Sites’s serverless environment makes it easy to run apps without managing Node.js servers.
Getting Started
Add your Express app to Edgio by running the following command in your project’s root directory:
Bash
1npm i -g @edgio/cli@^6.0.0 # yarn global add @edgio/cli@^6.0.02edgio init --edgioVersion ^6.0.0
Running your app locally
Test your app with the Sites on your local machine by running the following command in your project’s root directory:
Bash
1edgio dev
Deploying
Deploy your app to the Sites by running the following command in your project’s root directory:
Bash
1edgio deploy
Overriding the default app location
When you deploy your Express app to the Sites, the Edgio CLI bundles your app as a single javascript file so that it can be run as a serverless function. By default, Edgio looks for your app in the following common locations:
- src/server.ts
- src/server.js
- src/app.ts
- src/app.js
- src/index.ts
- src/index.js
- server.js
- app.js
- index.js
If it cannot find one of these files, you can specify the path to the app in
edgio.config.js
:JavaScriptedgio.config.js
1const {join} = require('path');23module.exports = {4 connector: '@edgio/express',5 express: {6 appPath: join(process.cwd(), 'path', 'to', 'app.js'),7 },8};
The file you specify in
appPath
should export an instance of an express app using export default
or module.exports
.Serving Static Assets
If your express app serves any static assets, you’ll need to add routes to your Edgio router configuration to serve them from the edge. For example, to serve all paths under
/assets
from dist/client/assets
:JavaScriptroutes.js
1import {Router} from '@edgio/core';23export default new Router()4 // Create serveStatic route for each file in the folder build5 // dist/client/assets with a cache-control header of 's-maxage=315360000'6 // and serve them under the /assets route7 .match('/assets/:path*', ({cache, serveStatic}) => {8 serveStatic('dist/client/assets/:path*');9 })10 // serve all unmatched URLs from express11 .fallback(({renderWithApp}) => {12 renderWithApp();13 });
Adding Additional Files Needed during SSR
If your express app expects to be able to read files from the filesystem at runtime, for example an index.html template, you can ensure they are included in the app bundle that is deployed to Sites’s serverless workers by adding the following to edgio.config.js
JavaScriptedgio.config.js
1module.exports = {2 connector: '@edgio/express',3 // Rest of the config4 includeFiles: {5 // Include index.html in the serverless bundle6 'dist/client/index.html': true,7 },8};
Transpiling and TypeScript support
Edgio will automatically transpile JavaScript and TypeScript source code for running on Node.js version 14. If you want to control how
source files are compiled, you can transpile your app on your own and point your
appPath
config to the transpiled version of your app’s main entry point.Edgio Applications’s support for Node.js version 16 is undergoing end-of-life. View the end-of-life plan.
Bundling Options
By default, Edgio uses ESBuild to transpile and bundle your application code. If you’re having difficulty fitting your app within the limit for serverless bundles, you can try bundling with ncc, which should produce smaller bundles, by adding the following to edgio.config.js:
JavaScriptedgio.config.js
1module.exports = {2 express: {3 bundler: '@vercel/ncc',4 },5};
Then add ncc to your app’s build dependencies:
Bash
1npm i -D @vercel/ncc@^0.34.0
Or, using yarn:
Bash
1yarn add --dev @vercel/ncc@^0.34.0
NCC produces a tree-shaken, bundle which includes your application code and all of its dependencies in a single file (written to .edgio/lambda/backends/index.js). NFT is also supported:
JavaScriptedgio.config.js
1module.exports = {2 express: {3 bundler: '@vercel/nft',4 },5};
Then add nft to your app’s build dependencies:
Bash
1npm i -D @vercel/nft@^0.21.0
Or, using yarn:
Bash
1yarn add --dev @vercel/nft@^0.21.0
NFT is similar to NCC, but it produces an exploded directory tree instead of including all of your code in a single file. We recommend trying ncc first.