https://github.com/bencodezen/vuejs-100-workshop
Materials for VueJS 100 workshop / tutorial
https://github.com/bencodezen/vuejs-100-workshop
Last synced: 5 months ago
JSON representation
Materials for VueJS 100 workshop / tutorial
- Host: GitHub
- URL: https://github.com/bencodezen/vuejs-100-workshop
- Owner: bencodezen
- Created: 2018-03-23T16:18:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-17T03:17:53.000Z (almost 8 years ago)
- Last Synced: 2025-07-30T10:00:58.383Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.21 MB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue.js 100 Workshop
## Description
In this workshop, we will be covering:
* What is Vue.js and why should you care?
* How does it compare to other frameworks?
* Hands on experience with Vue.js
* Build a fully functioning calculator app
## Resources
* [Slides](/vuejs-100.pdf)
## Preview

## Getting Setup
### Develop in the Cloud
#### Dependency
1. Modern browser (preferably Chrome or Firefox)
#### Instructions
1. Open the [CodeSandbox starter template](https://codesandbox.io/s/github/bencodezen/vuejs-100-workshop)
### Running Locally
#### Dependency
* [Node.js](https://nodejs.org/en/)
#### Instructions
1. Clone this repository
2. Navigate to project directory in terminal
3. Run the following commands:
```bash
# install dependencies
npm install
# start a local server with hot reload
# default url is http://localhost:8080
npm run dev
```
#### Generating Production Code
```bash
# build for production with minification
npm run build
```