This project was bootstrapped with Create React App.
This is a final project at Udacity Frontend nano-degree. the project is using react and presents a map with hardcoded locations that the user can interact with.
my-app/
README.md
node_modules/
package.json
public/
index.html
favicon.ico
src/
App.css
App.js
App.test.js
index.css
locationList.js
locationLists.css
mapContainer.js
venueCard.js
locationInfoWindow.js
regusterServiceWorker.js
errorBoundary.js
For the project to build, these files must exist with exact filenames:
public/index.html
is the page template;src/index.js
is the JavaScript entry point.
You can delete or rename the other files.
You may create subdirectories inside src
. For faster rebuilds, only files inside src
are processed by Webpack.
You need to put any JS and CSS files inside src
, otherwise Webpack won’t see them.
Only files inside public
can be used from public/index.html
.
Read instructions below for using assets from JavaScript and HTML.
You can, however, create more top-level directories.
They will not be included in the production build so you can use them for things like documentation.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Service workers require HTTPS, although to facilitate local testing, that policy does not apply to localhost. If your production web server does not support HTTPS, then the service worker registration will fail, but the rest of your web app will remain functional.
Service workers are not currently supported in all web browsers. Service worker registration won't be attempted on browsers that lack support.
The service worker is only enabled in the production environment, e.g. the output of npm run build.
If you need to test your offline-first service worker locally, build the application (using npm run build) and run a simple http server from your build directory. After running the build script, create-react-app will give instructions for one way to test your production build locally and the deployment instructions have instructions for using other methods. Be sure to always use an incognito window to avoid complications with your browser cache.
creates a build directory with a production build of your app. Set up your favourite HTTP server so that a visitor to your site is served index.html, and requests to static paths like /static/js/main..js are served with the contents of the /static/js/main..js file.
for environments using Node, the easiest way to handle this would be to install serve and let it handle the rest:
The last command shown above will serve your static site on the port 5000 Open http://localhost:5000 to view it in the browser.
you can see the website hosted in github pages here
This app is using: foursquare API to fetch information about locations Google Maps
to render the map: react-googl-maps for ui elements: semantic- ui -react for search and filter: escape-string-regexp, sort-by
By default, the generated project uses the latest version of React.
You can refer to the React documentation for more information about supported browsers.