Skip to main content

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

aka Synchronous, Synchronicity

Blocking

References

  1. existsSync()fs Static Method to check Sync if path exists

  2. unlinkSync()fs Static Method to Sync remove file/Symbolic Link

  3. renameSync()fs Static Method to Sync rename file

  4. rmdirSync()fs Static Method to Sync remove dir

  5. mkdirSync()fs Static Method to Sync make new dir

  6. appendFileSync()fs Static Method to Sync append data to file

  7. readFileSync()fs Static Method to Sync read file content

  8. readdirSync()fs Static Method to Sync read dir content

  9. writeFileSync()fs Static Method to Sync write data to file

  10. Run [Effect](effect) [**_Sync_**](sync) before repaint [DOM API](dom-api)useLayoutEffect()

  11. Commit Phase ↔ (process) to apply UI change to DOM API (in one Sync shot)

  12. Waterfall Chart ↔ Bar Chart to visualize cumulative load sequence Synchronous of each component

  13. to eliminate data fetchCollocate on Server Component for Synchronous access

  14. Move Data Fetch to Server-Side( Next 13 ) to Collocate Data Fetch ops in Server Component for Sync perf

  15. Network Waterfall ↔ to load data in Synchronous Blocking stages