An open API service indexing awesome lists of open source software.

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

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

![Calculator App Preview](/preview.gif)

## 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
```