You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Michael Mehall edited this page Jan 13, 2025
·
6 revisions
Warning
These docs are actively being updated and may reflect changes before they are fully implemented in code. The deprecated docs at https://apidocs.searchneu.com are still official until marked otherwise.
"SearchNEU", as a complete application, exists in two parts:
Backend: The backend is our API server, which does all of the heavy lifting. This stores all of the course data - names, IDs, sections, descriptions, etc. It also handles notifications. The user can interact with this data using the frontend.
The backend is also used by other applications (like GraduateNU).
Frontend: The frontend is what a user sees when they go to searchneu.com. It does not have any data on its own - whenever a user searches for a course, the frontend sends a request to the backend, which returns the data. The frontend handles display; the backend handles data processing.