Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/sarahdayan/colorpicker-tdd-tutorial
- Owner: sarahdayan
- Created: 2019-05-04T14:40:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:54:45.000Z (11 months ago)
- Last Synced: 2024-10-14T04:23:59.719Z (23 days ago)
- Topics: javascript, tdd, unit-testing, vuejs
- Language: JavaScript
- Homepage: https://colorpicker-tdd-tutorial.netlify.com/
- Size: 3.85 MB
- Stars: 17
- Watchers: 1
- Forks: 1
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
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
```