Skip to content

punkave/frontend-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 

Repository files navigation

P'unk Avenue frontend challenge

Using HTML, CSS, and one of the following:

  • Vanilla JavaScript
  • jQuery

Create a single-page website/web application that displays bike share and weather information for people in Philadelphia using Indego and Open Weather Map APIs.

Requirements

The app:

  • Asks the user for an address (you may use an input field)
  • Displays the location of at least three nearby bike stations on a map (you may integrate Google Maps, Open Street Map, or another tool of your choice)
  • Visually indicates the number of open docks and available bikes at each bike station
  • Visually indicates the weather, and
  • Displays a warning if the weather seems dangerous.

APIs

Indego is Philadelphia's bike-sharing program, with many bike stations in the city.

The Indego GeoJSON station status API provides a realtime snapshot of the number of bikes available, number of open docks available (not currently containing a bike), and total number of docks at every station. This API is free and requires no API key.

Hint: the API responds with a JSON object. You may find it easier to work out how to work with the data if you visit the API manually first and feed its output through a JSON pretty printer or similar tool. Your actual app should access the API on its own.

The Open Weather Map API provides a realtime snapshot of the current weather in a given city. Since Philadelphia is a small geographical area it is sufficient to obtain the weather for a geographical location central to Philadelphia. This API has a free plan, you will need to sign up for an API key. This API is well documented.

Criteria

Your work will be evaluated primarily on:

  • Consistency of coding style (ideally in harmony with our JavaScript style guide)
  • Idiomatic use of your chosen JavaScript library (or vanilla JavaScript)
  • Good user experience (UX)
  • General quality of code and technical communication.

How to submit your work

Fork this project on github. When you're finished, send us the URL of your public repository. You should also include clear instructions to run the app and/or the URL of your running instance of the app (if you're hosting it). Consider using .gitignore to avoid putting any deployment credentials or API key in your public repository.

If you prefer, you may submit your code to us privately by email, rather than using a fork in your public github.

Extra credit

  • Make your app available on the web instead of hosting it locally! Although systems administration isn't a huge part of this position, we're interested in learning about your comfort level with the fundamentals of making something publicly available. (Hint: GitHub Pages or Netlify might be options to consider.)
  • Ask the user whether they are looking for a bike, or a place to park one.
  • Use color or some other means to emphasize when there are plenty of bikes/racks, or very few.
  • Update in real time.
  • Geolocation. (Hint: you must use https on your server, which takes some doing.)
  • Use Vue or React, as a followup to your vanilla JS / jQuery project. If you choose to, please do this in a separate git branch, after you complete it with vanilla JS and jQuery. It's important to us to see how you'd structure the project without build tools that typically accompany such frameworks.
  • Anything else you think is cool, relevant, and consistent with the other requirements.

If you don't finish

We are most interested in your frontend development skills. If you have trouble with the APIs, focus first on building the application that would display that data, using mocked-up data at first, and add in real queries to the APIs at the end.

About

P'unk Avenue frontend challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published