An M3 docs page still references fibers:
Meteor runs most app code within Fibers, which allows keeping track of the context a function is running in.
Meteor.EnvironmentVariable
works withMeteor.bindEnvironment
, promises, and many other Meteor API’s to preserve the context in async code. Some examples of how it is used in Meteor are to store the current user in methods, and record which arguments have been checked when usingaudit-argument-checks
.