Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sarahdayan/colorpicker-tdd-tutorial

The project of the tutorial "An Introduction to TDD with Vue.js" on fronstuff.io.
https://github.com/sarahdayan/colorpicker-tdd-tutorial

javascript tdd unit-testing vuejs

Last synced: 8 days ago
JSON representation

The project of the tutorial "An Introduction to TDD with Vue.js" on fronstuff.io.

Awesome Lists containing this project

README

        

# Color Picker Vue.js TDD Tutorial 🎨

The project of the tutorial [An Introduction to TDD with Vue.js](https://frontstuff.io//an-introduction-to-tdd-with-vuejs) on [fronstuff.io](https://frontstuff.io). You can preview it [here](https://colorpicker-tdd-tutorial.netlify.com/).

This projects requires [Node.js](https://nodejs.org/en/).

## Installation

To install the project, run the following command in your terminal:

```sh
npm install
# or
yarn install
```

### Compiles and hot-reloads for development

```sh
npm run serve
# or
yarn serve
```

### Compiles and minifies for production

```sh
npm run build
# or
yarn build
```

### Lints and fixes files

```sh
npm run lint
# or
yarn lint
```

### Run your unit tests

```sh
npm run test:unit
# or
yarn test:unit
```