Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/codeamt/neighborhood-map
- Owner: codeamt
- Created: 2018-09-16T08:30:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-16T08:31:13.000Z (over 6 years ago)
- Last Synced: 2023-10-20T04:52:18.066Z (about 1 year ago)
- Language: JavaScript
- Size: 106 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.