1. Introduction
This section is non-normative.
The Minimum Common Web Platform API is a curated subset of standardized Web Platform APIs intended to define a minimum set of capabilities common to Browser and Non-Browser JavaScript-based runtime environments.
2. Terminology
The Web Platform is the combination of technology standards defined by organizations such as the W3C, the WHATWG, and others as implemented by Web Browsers.
A Web-interoperable Runtime is any ECMAScript-based application runtime environment that implements the subset of Web Platform APIs outlined in this specification. While this term is intentionally broad to also encompass Web Browsers, the primary focus here is on outlining expectations for non-browser runtimes.
3. Common API Index
All Web-interoperable Runtimes conforming to this specification SHALL implement each of the following Web Platform APIs in accordance with their normative requirements except where modified here. Where any conforming runtime environment chooses (either by necessity or otherwise) to diverge from a normative requirement of the specification, clear explanations of such divergence MUST be made clearly and readily available in the documentation.
Interfaces:
-
The
FormData
constructor optionally takesHTMLFormElement
andHTMLElement
as parameters. TODO: Figure out what implementations without DOM support should do here. Node.js and Deno throw if the first parameter is notundefined
but ignore the second parameter. Cloudflare Workers ignores all parameters.
Global methods / properties:
-
globalThis.
atob()
-
globalThis.
btoa()
-
globalThis.
console
-
globalThis.
crypto
-
globalThis.
fetch()
-
globalThis.onerror (on
Window
andWorkerGlobalScope
) -
globalThis.onunhandledrejection (on
Window
andWorkerGlobalScope
) -
globalThis.onrejectionhandled (on
Window
andWorkerGlobalScope
) -
globalThis.
performance
.now()
-
globalThis.
performance
.timeOrigin
-
globalThis.
queueMicrotask()
-
globalThis.
setTimeout()
/ globalThis.clearTimeout()
-
globalThis.
setInterval()
/ globalThis.clearInterval()
-
globalThis.
structuredClone()
-
globalThis.
WebAssembly
.compile()
-
globalThis.
WebAssembly
.compileStreaming()
-
globalThis.
WebAssembly
.instantiate()
-
globalThis.
WebAssembly
.instantiateStreaming()
-
globalThis.
WebAssembly
.validate()
4. The Global Scope
The exact type of the global scope (globalThis
) can vary across runtimes. Most Web Platform APIs are defined in terms that assume Web Browser environments that specifically expose types like Window
, Worker
, WorkerGlobalScope
, and so forth. To simplify conformance, all Interfaces, methods, and properties defined by this specification MUST be exposed on the runtime’s relevant global scope (e,g., globalThis.crypto
, globalThis.ReadableStream
, etc).
With many runtimes, adding a new global-scoped property can introduce breaking changes when the new global conflicts with existing application code. Many Web Platform APIs define global properties using the readonly
attribute. To avoid introducing breaking changes, runtimes conforming to this specification MAY choose to ignore the readonly
attribute for properties being added to the global scope.
The global object on Window
-like and worker environments must always be an instance of EventTarget
. Web-interoperable runtimes must follow the report an exception algorithm, and the JavaScript HostPromiseRejectionTracker host hook, as defined in [HTML]. This includes firing the error
, unhandledrejection
and rejectionhandled
events on the global object.
Note: Some runtimes might not support firing those events following the HTML specification exactly due to legacy reasons.
For example, in Node.js the global object does not implement EventTarget
, and the relevant events are fired on the process
object with the names uncaughtException
, unhandledRejection
and rejectionHandled
, respectively.
Such runtimes should not support the onerror
, onunhandledrejection
and onrejectionhandled
global properties, but they might implement the ErrorEvent
and PromiseRejectionEvent
interfaces.
5. Requirements for navigator.userAgent
The globalThis.navigator
.userAgent
property is provided such that application code can reliably identify the runtime within which it is running.
The value of the property is a string conforming to the
construction in RFC 7231:User-Agent
User-Agent = product *( RWS ( product / comment ) ) product = token ["/" product-version] product-version = token
While runtimes that implement globalThis.navigator
.userAgent
MUST provide a value that is conformant with the structure defined by RFC 7231, the value SHOULD be treated as a single, complete, opaque, unstructured value. It is RECOMMENDED that the value be limited to a single product
token excluding the optional product-version
. For instance, navigator.userAgent = 'MyRuntime'
. The value SHOULD NOT include any comment
components.
6. Extensions
Runtime-specific extensions to any Web Platform API MAY be implemented by conforming runtimes. Such extensions MUST be defined so that their use neither contradicts nor causes the non-conformance of normative functionality of any Web Platform API.
Application use of such extensions must be carefully considered, as doing so reduces interoperability and portability of code across runtimes.