From 7467e357af9ab2cf8cd84231ea6c130abc43256a Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Tue, 19 Feb 2019 11:19:26 -0800 Subject: [PATCH] Create README.md --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2b90b79 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# Web Bootcamp/Day in the Web + +## Purpose of this workshop + +This repo is the content for a two day workshop focused on introducing you to the fundamentals of web development. By the end of these two days you will have better understanding of how we write and deliver features on the web. You will also get some hands on experience using everything from HTML, CSS and JavaScript to React, Redux and UI Fabric as we build a working application together. + +## Who is this workshop for + +This workshop starts as a very high level introduction to the core principles of the web: HTML, CSS and JavaScript. This section is targeted at new and experienced developers alike. The second day dives into more complex topics such as Typescript and state management within an application. The examples should be accessible to anyone, but you will get more out of the day if you have some foundational experience in programing or web technologies. + +## Web Workshop Setup + +#### Computer Setup + +- Current version of [Node/NPM](https://nodejs.org/en/) +- Install [Git](https://git-scm.com/downloads) +- [VSCode Editor](https://code.visualstudio.com) +- Up to date browser with dev tools (some demos will be shown using Chrome) + +### Getting Set Up + +```bash + $ git clone tba + $ cd bootcamp + $ npm install + $ npm start +``` + +After the project loads in your browser, click on `Step 0 - HTML/CSS/JS`. Then go to the `Day 1: Step 0` page for the lesson and exercise instructions. + +### Additional Resources + +- [MDN Web Docs](https://developer.mozilla.org/en-US/) +- [React Docs](https://reactjs.org/docs/getting-started.html) +- [Thinking in React](https://reactjs.org/docs/thinking-in-react.html)