Azion Edge Runtime

The Azion Edge Runtime is a set of tools for developing applications at the Edge. The Azion Edge Runtime allows you to write JavaScript edge functions built on Web standards.

Edge functions help you to implement the business logic and create serverless applications, at the edge of the network, closer to users.

With Azion Edge Runtime, you can use a set of Web APIs, such as:

  • Network
  • Encoding and Decoding
  • Web Streams
  • Standards
  • V8 Primitives

Jamstack is an approach that separates data and business logic from the web experience layer, improving flexibility, scalability, performance, and maintainability.

You can experience the Jamstack architectural approach deploying an application on the Azion Edge Platform.

Static applications

Compute

  • Next.js

go to supported frameworks reference
go to supported Web APIs reference
go to node.js support reference

Azion makes strict mode the default and required option for type checking JavaScript code. The Azion core team strongly advocates for strict mode as the sensible default choice. This mode empowers developers with essential JavaScript features that ideally should have been available from the beginning. However, as JavaScript evolved over time, incorporating these features would have introduced breaking changes to existing codebases.

Strict mode makes several changes to normal JavaScript semantics:

  • Eliminates some JavaScript silent errors by changing them to throw errors.
  • Fixes mistakes that make it difficult for JavaScript engines to perform optimizations: strict mode code can sometimes be made to run faster than identical code that’s not strict mode.
  • Prohibits some syntax likely to be defined in future versions of ECMAScript.

Learn more about Strict mode


Contributors