edgeworkers-examples icon indicating copy to clipboard operation
edgeworkers-examples copied to clipboard

EdgeWorkers Examples – This repository contains practical examples, that can be used as a starting point for Akamai EdgeWorkers.

Results 21 edgeworkers-examples issues
Sort by recently updated
recently updated
newest added

Edge worker compatible CWT module. **Limitations** - Currently the module only support API's for verification of CWT tokens that are generated using HS256 algorithm only. - Currently the module only...

Edge worker compatible JWT module. **Limitations** - Currently the module only support API's for verification of JWT tokens that are generated using RS256 or HS256 algorithm. - As of now,...

Currently need a way to produce a rollup bundle without secrets. Example would be to compile a rollup bundle with different `edgekv_tokens` so that the same bundle can be deployed...

Looking for support to add `Remix` or `NextJS` support into EdgeWorkers. Some of the missing features that are needed are described here, https://github.com/remix-run/remix/issues/1539 TL;DR - Add `body` to the `request`...

When I read `import cookies from 'cookies'` I thought it would use the `cookies` packages from npm.. This was quite confusing for me. Maybe you could use a namespace instead...

edgeworkers/examples/getting-started/hello-world/README.md step 21 seems to be out of date. EdgeWorker CLI v1.1.0 only accepts `` . ``` Usage: akamai-edgeworkers create-auth-token|auth [options] ```

### Overview A simple JSON Web Token decoder and validator, using HS256. A responseProvider is included to demonstrate the headers passed to origin. ### Features A JWT class to decode...

It is possible to get full IDE support without setting up any transpilers. Typescript supports `.js` files if they add the `/// @ts-check` comment and use JSDoc. Maybe the following...