A app that helps surfers plan their sessions.
This app helps surfers pick the best spot to surf for a given time. Instead of constantly checking and manually comparing different surf spots across different websites, this does all the aggregation and filtering for you. It will sort through different spots within your selected location and time, and rank the best spots for your session based on your preferences.
It started as a 2-day sprint project for Hack Reactor.
Users can set their name, email, location, and wave preferences.
- Surf Location: This is currently limited to the US. The app will search surf spots within the state (e.g. California).
- Wave Preference: The spots will be filtered based on the forecast wave height.
Users can plan a session up to 17 days in the future. They can select the morning vs. afternoon.
For each session, the app produces a list of spots ranked by condition and matching the criteria. Each time a user checks that session, the list is populated with the most up-to-date information.
From the root directory, run the following commands in your terminal:
npm install
npm run server-dev
In the browser, open http://localhost:3000 or use another port as specified by your PORT environment variable.
npm run react-dev