JavaScript Table that fetches data from a JSON file from the server and displays it as table format
Introduction:
Basic HTML stylized using tailwind CSS contains a HTML table that fetches data from a JSON server and displays to the client.
How to start the app?
- Clone the git hub repo.
- run this command on your terminal/ command line npm install (This should install all the necessary pacakges used like 'json-server')
- run the command npm start
- Your server must be running on 'http://localhost:3000/user'.
- Open the index.html file on your favorite browser.
- It should display all the entries in a table format.
- You can go to database folder and change the entries in the db.json file this automatically makes changes in the table once you refresh the page.
