This is a website created using React, which is used for analysing network requests
The main objective of the project is to analyse the main thread blocking time by third party scripts and optimise it by offloading them to a service worker. This repositiory contains te source code for the Analyser Tool which serves the purpose of analysing various network requests made by websites.
To install on MacOS/Linux:
Step 1: Download NVM with Install Script using cURL and set environment variables:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
echo 'export PATH=/usr/local/bin:$PATH' >>~/.bash\_profile
source ~/.bashrc
Step 2: Install the Latest Node Version Using NVM
nvm install node
To get the development environment running:
npm install
npm start
The system can be deployed to a server using the following commands:
npm build
