- Explainer.
- HTML Rendered Spec.
- Currently at Stage 2.
- Code of Conduct
- @dherman
- @caridy
- @erights
- @leobalter
Realms are a distinct global environment, with its own global object containing its own intrinsics and built-ins (standard objects that are not bound to global variables, like the initial value of Object.prototype).
See more at the explainer document.
declare class Realm {
constructor();
readonly globalThis: typeof globalThis;
import(specifier: string): Promise<Namespace>;
}
See some examples in the Explainer file.
- TC39 Meeting, June 4th 2020 - Stage 2 Update
- TC39 Incubator Call May 26th 2020
- TC39 Feb 2020 - Stage 2 Update
- TC39 May 2018 - Stage 2 Request (archived)
- we worked on this during ES2015 time frame, so never went through stages process (ES6 Realm Objects proto-spec.pdf)
- got punted to later (rightly so!)
- goal of this proposal: resume work on this, reassert committee interest via advancing to stage 2
- original idea from @dherman: What are Realms?
The source for the spec text is located in spec.html and it is written in ecmarkup language.
When modifying the spec text, you should be able to build the HTML version by using the following command:
npm install
npm run build
open dist/index.html
Alternatively, you can use npm run watch
.