Table of Contents
This repo was created to house a mock up of the scheduler made in Next.js (a React framework) using Typescript.
This was created as part of the RSS try it out day, where we take a day away from normal work to trial and test new technologies that could be beneficial to the team/division now or in the future.
Currently each commit highlights a new feature added and shows how to do something. This is subject to change in the future.
- Clone the repo
- Navigate to
/react-scheduler-test - Run the command
npm run dev
Hot reload is a feature where the web page updates instantly when a change is made to the code without requiring a full refresh/rebuild. It allows code to change whilst the app is still running.
This allows for much faster development which is extremely beneficial.
Due to the tech stack being relatively simple, hot reload works seamlessley (except when there are build errors, then hot reload pauses until these errors are resolved). However, when more complex technologies and languages are introduced there is a possibility of hot reload no longer working, or at least not as well/efficiently.