Skip to main content

Runtime ↔ final lifecyle stage when Program is run inside EC

aka Dynamically

References

  1. Runtime ErrorException at Runtime

  2. Dynamically-Typed ↔ of Variable not fixed to one Type at Declaration, can be reassigned, only become known at Runtime

  3. Type GuardRuntime Type-Check to Narrow Type of Variable

  4. SyncRuntime behaviour to execute Code sequentially line-by-line in exact order, tends to be Blocking

  5. eval() ↔ to evaluate Code arg as string at Runtime - bad for security/perf

  6. RegExp Constructor NotationRegExp Syntax to call RegExp() to execute RegExp expression at Runtime

const re = new RegExp(_regExpPattern: RegExp, flags = regExp.flags)
  1. useScript()Custom Hook to Dynamically load external Script

  2. Docker ContainerDocker Image Runtime instance to virtualize OS as lightweight VM (excl Hardware overhead)

  3. Dynamic LevelTS Runtime Language Level of JS Source Code & Variables

  4. import()JS Operator to Dynamically load Module via Promise

  5. EXPOSE ↔ to expose Port (TCP|UDP) for Container to listen at Runtime