Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenotron/bootcamp
Forkable Repo for Creating Frontend Bootcamps
https://github.com/kenotron/bootcamp
bootcamp frontend javascript typescript webpack
Last synced: 19 days ago
JSON representation
Forkable Repo for Creating Frontend Bootcamps
- Host: GitHub
- URL: https://github.com/kenotron/bootcamp
- Owner: kenotron
- Created: 2019-01-18T18:29:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-01T04:18:40.000Z (about 2 years ago)
- Last Synced: 2024-11-01T14:12:01.674Z (2 months ago)
- Topics: bootcamp, frontend, javascript, typescript, webpack
- Language: TypeScript
- Homepage: https://kenotron.github.io/bootcamp/
- Size: 11.1 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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)