EdgeOne edge nodes provide a Serverless code execution environment for Pages edge functions. You just need to write business function code and set trigger rules. Without the need to configure and manage servers or other infrastructure, you can run code elastically and securely on edge nodes close to users.
Advantages of Edge Functions
Distributed Deployment
EdgeOne has more than 3,200 edge nodes. Edge functions run on edge nodes in a distributed deployment.
Ultra-low latency
Client requests will be automatically scheduled to the latest edge node close to your users. Hit the trigger rule to trigger the edge function to process the request and return the response result to the client, which can significantly reduce the access latency of the client.
Elastic Scale-out
Edge functions can handle client requests by routing them to the nearest edge nodes with sufficient computational resources in response to a sudden increase in the number of client requests, from closest to farthest. You no need to worry about spikes occur.
Serverless Architecture
You no need to care about and maintain the memory, CPU, network and other infrastructure resources of the underlying server, and can devote more energy to the development of business code.
Quick Start Guide
1. Install npm packages: npm install -g edgeone. For more commands, see the scaffolding document.
2. Develop locally: under the Pages code project
2.1 Function Initialization: edgeone pages init, automatically initialize the functions directory, and host the functions code.
2.2 Associate project: edgeone pages link, fill in the current project name, and automatically associate project KV configuration, environment variables, etc.
2.3 Local development: edgeone pages dev, start up local proxy service, perform function debugging.
3. Function release: Push code to the remote repository and automatically build and release the function.
Route
Pages Functions generates access routes based on the /functions directory structure. You can create subdirectories of any level in the /functions directory of the project repository. See the following example.
...
functions
├── index.js
├── hello-pages.js
├── helloworld.js
├── api
├── users
├── list.js
├── geo.js
├── [id].js
├── visit
├── index.js
├── [[default]].js
...
The above directory file structure will generate the following routes after being constructed by the EdgeOne Pages platform. These routes map the Pages URL to the /functions file. When the client accesses the URL, the corresponding file code will be triggered to run:
File path
Route
/functions/index.js
example.com/
/functions/hello-pages.js
example.com/hello-pages
/functions/helloworld.js
example.com/helloworld
/functions/api/users/list.js
example.com/api/users/list
/functions/api/users/geo.js
example.com/api/users/geo
/functions/api/users/[id].js
example.com/api/users/1024
/functions/api/visit/index.js
example.com/api/visit
/functions/api/[[default]].js
example.com/api/books/list
example.com/api/books/1024
example.com/api/...
Note:
A trailing slash / in the route is optional. /hello-pages and /hello-pages/ will be routed to /functions/hello-pages.js.
If no Pages Functions route is matched, client requests will be routed to the corresponding static resources of Pages.
Routing is case-sensitive. /helloworld will be routed to /functions/helloworld.js and cannot be routed to /functions/HelloWorld.js.
Dynamic routing
Pages Functions support dynamic routing. In the above example, the single - level dynamic path is /functions/api/users/[id].js, and the multi - level dynamic path is /functions/api/[[default]].js. See the following usage:
File path
Route
Match
/functions/api/users/[id].js
example.com/api/users/1024
Yes
example.com/api/users/vip/1024
No
example.com/api/vip/1024
No
/functions/api/[[default]].js
example.com/api/books/list
Yes
example.com/api/1024
Yes
example.com/v2/vip/1024
No
Function Handlers
Use Functions Handlers to create custom request handlers for Pages, as well as define RESTful APIs to implement full-stack applications. The following Handlers methods are supported:
The context is an object passed to the Function Handlers method, containing the following properties:
request: client request object
params: dynamic routing /functions/api/users/[id].js parameter value
exportfunctiononRequestGet(context){
returnnewResponse(`User id is ${context.params.id}`);
}
env: Pages environment variables
Runtime APIs
Pages Functions is implemented based on edge Functions and provides a Serverless code execution environment for EdgeOne edge nodes. It supports ES6 syntax and standard Web Service Worker APIs. Most of the Runtime APIs can refer to the edge function usage. See the following description:
Cache is designed based on the Web APIs standard Cache API. The Functions runtime will inject the caches object globally. This object provides a set of cache operation interfaces.
Web Crypto API is designed based on the Web APIs standard Web Crypto API. It provides a set of common encryption operation APIs. Compared with encryption APIs implemented in pure JavaScript, Web Crypto API has higher performance.
Edge function is a Serverless code execution environment designed and implemented based on the V8 JavaScript engine, providing the following standardized Web APIs.
Note:
- Currently, using fetch to access EdgeOne node cache or origin-pull is not supported in the Edgeone CLI debugging environment.
- Use context.request.eo to obtain client GEO info.
Pages Functions does not support addEventListener. Listen to client requests based on Function Handlers.