Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waddlaw/vue-introduction
https://github.com/waddlaw/vue-introduction
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/waddlaw/vue-introduction
- Owner: waddlaw
- Created: 2018-09-29T06:35:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-01T10:22:01.000Z (about 6 years ago)
- Last Synced: 2024-11-06T23:42:23.987Z (about 2 months ago)
- Language: HTML
- Size: 967 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Vue.js 入門
- [Vue.js入門 基礎から実践アプリケーション開発まで](https://gihyo.jp/book/2018/978-4-297-10091-9)
- [サポートページ](https://gihyo.jp/book/2018/978-4-297-10091-9/support)## karma + mocha
依存関係のインストール
```shell
$ npm install karma mocha --save-dev
```プロジェクトの作成
```shell
$ karma init
Which testing framework do you want to use ?
Press tab to list possible options. Enter to move to the next question.
> mochaDo you want to use Require.js ?
This will add Require.js plugin.
Press tab to list possible options. Enter to move to the next question.
> noDo you want to capture any browsers automatically ?
Press tab to list possible options. Enter empty string to move to the next question.
> Chrome
```karma の起動
```shell
$ karma start
```