Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/codeamt/neighborhood-map

A museum discovery app built with React.js and third party APIs/Libraries.
https://github.com/codeamt/neighborhood-map

Last synced: about 2 months ago
JSON representation

A museum discovery app built with React.js and third party APIs/Libraries.

Awesome Lists containing this project

README

        

# Museums in Manhattan
---



## Description:
This single page app uses Google maps and Foursquare's API to list all the available museums near by in Manhattan, New York. The project was made as a result of helping Udacity's mentees wih the front-end web developer Nanodegree project and demonstrates proficiencies in: ReactJS, JavaScript, API usage, HTML, CSS, and general front-end web development skills.

## How to run:
Make sure that you have Node.js installed on your device and then clone the repository.
Navigate to the directory that contains the project and write:
```
npm install
```
once everything is setup run:
```
npm start
```
The browser should automatically open the app. If it doesn't, navigate to [http://localhost:3000/](http://localhost:3000/)

NOTE: Service worker for this app will only work when the app is in production mode.
## Loading the App in Production Mode:
To run the app in production mode run:
```
npm run build
```
Then navigate to the build directory and start a localhost with python
```
python -m SimpleHTTPServer 8000
```
After that navigate to [http://localhost:8000](http://localhost:8000) in your browser.