This code runs the CRUD Database application for volunteers to interact with, input, and update datbase information relating to the Parking Lot Map and Parking Reform Map.
This project utilizes React, Typescript, and Parcel.
-
Install Node Package Manager (npm).
-
Run
npm i
in the main folder.
❯ npm run start
Then open http://localhost:1234 in a browser. Hit CTRL-C
to stop the development server.
When the server is running, you can make any changes you want to the project. Reload the page in the browser to see those changes. (You may need to force reload, e.g. hold the shift key while reloading on macOS.)
To fix the format of your code before pushing it up to the repository, you can run the following command to do a check for you:
> npm run fmt
To check if there are any errors in your code, such as unused variables, use the following command:
> npm run fix
"Linting" means using tools that check for common issues that may be bugs or low code quality.
❯ npm run lint
There are currently no tests for this repository. Tests will be added as there is more development.