Explorium is a well-designed Search Engine with content classification tools
Explorium is a Search Engine app with accurate, real-time search engine results by location, device, and language based on SEO API that allows you to find data for SEO, news, images, videos, products and crawlers.
Here is the folder structure of Explorium.
Explorium-Search-Engine/
|- public/
|- src/
|-- assets/
|-- components/
|-- contexts/
Now, lets dive into the public and src folders.
index.html
- manifest.json
The public folder contains the HTML file so you can tweak it, for example, to set the page title. The <script> tag with the compiled code will be added to it automatically during the build process.
unfound_illustration.svg
- an Illustration that used in case of no results found.
Classifier.jsx
- Footer.jsx
- Loader.jsx
- Navbar.jsx
- Results.jsx
- Router.jsx
- Search.jsx
JSX files contain Explorium components which split the UI into independent and reusable pieces.
Classifier.jsx
- This component display classification links of data.
Footer.jsx
, Navbar.jsx
- This components displays the Navigation Bar & Footer.
Loader.jsx
- Puff loading component for display while waiting to fetching the results from the API.
Results.jsx
- Results component handles the display form of the fetched results, that is, widgets for the various links.
Router.jsx
- Router component enables the navigation among views of various components in application.
Search.jsx
- Search components (includes search field, search button and classification links).
ResultContextProvider.jsx
- Implementation of Provider React component that allows consuming components to subscribe to context changes, that is, fetch results from API according to data types
In order to use Explorium you have to create your SEO-API api key powered by RapidAPI here, to run this web app, you will need to add the following environment variable to your .env file
REACT_APP_RAPIDAPI_SEO_KEY
Download or clone this repo by using the link below:
https://github.com/ladunjexa/Explorium-Search-Engine
Explorium using NPM (Node Package Manager), therefore, make sure that Node.js is installed by execute the following command in console:
node -v
At the main folder execute the following command in console to get the required dependencies:
npm install
Within the main folder create a file named .env
and add the following environment variable:
REACT_APP_RAPIDAPI_SEO_KEY=<YOUR_API_KEY>
At the main folder execute the following command in console to get the required dependencies:
npm run start
Contributions are always welcome!
See contributing.md
for ways to get started.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt for more information.
Liron Abutbul - @lironabutbul6 - @ladunjexa
Project Link: https://github.com/ladunjexa/Explorium-Search-Engine
This section used to mention useful resources and libraries that used in Explorium
- RapidAPI
- Google Fonts
- #JSMastery