Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 784 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 784 Bytes

buy the way

find restaurants along your route

tl;dr

  • react
  • es7 (babel)
  • webpack

install

  1. brew install node
  2. npm install --dev

run

local server

  • npm start
  • run's webpack server, hot reloading

build for prod

  • webpack
  • add --watch to watch files

debug

code conventions

  • avoid callback hell. use promises, and if you're returning a value (such a geocode pt), use async and await.

development tools:

  • I recommend using Sublime and the babel library for syntax highlighting

to-do

  • location after time
  • split app.js into different component files
  • gas stations?
  • config keys
  • scrollable restaurant list?