A minimalist starter to help learn web development.
See the blog post this is supported by here
- Clone this repo
- run
npm installto install dependencies - run
npm startto kick off the webpack dev server - visit the running app on
localhost:8080in your browser - try making some changes and build out your own application! (some classic examples are a todo app, or a receipe search app)
To help the learning process, there's 3 emoji's to look out for across these example apps:
- 🪵 - shown where we change the structure of our application "I need a new button"
- 🎨 - shown where we change styles of our application "I need my button to be blue"
- 🤖 - shown where we change the functionality of our application "I need my button to increment a counter"