FastEdge JS SDK
December 31, 2025 ยท View on GitHub
This is the Javascript SDK for building Javascript applications ready for deploying on FastEdge.
Getting Started
Please read through the documentation provided by Gcore.
- FastEdge: Overview
- User Guide: SDK Homepage
- Deploying an App: Documentation
Installation
Required:
- Node v20 or higher
Setup:
npm install --save-dev @gcoredev/fastedge-sdk-js
Basic Javascript Example
async function app(event) {
const request = event.request;
return new Response(`You made a request to ${request.url}`);
}
addEventListener('fetch', (event) => {
event.respondWith(app(event));
});
Home Page
For more information on how this works please visit our user guide and homepage