Skip to content

Commit f79d2e8

Browse files
committed
http server & readme
1 parent e7a411a commit f79d2e8

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
package-lock.json

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Vue.js Session
2+
==============
3+
4+
Installation
5+
------------
6+
7+
- Install the Chrome [Vue.js devtools](https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en)
8+
- Install the Visual Studio Code [Vetur](https://marketplace.visualstudio.com/items?itemName=octref.vetur) extension
9+
- Install the Visual Studio Code [Vue Inline Template](https://marketplace.visualstudio.com/items?itemName=faisalhakim47.vue-inline-template) extension
10+
11+
12+
13+
Running
14+
-------
15+
16+
```
17+
npx http-server
18+
```

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "vue-tutorial",
3+
"version": "1.0.0",
4+
"description": "Vue.js Session",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "http-server"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/itenium-be/Vue.js-Tutorial.git"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/itenium-be/Vue.js-Tutorial/issues"
18+
},
19+
"homepage": "https://github.com/itenium-be/Vue.js-Tutorial#readme",
20+
"dependencies": {
21+
"http-server": "^0.11.1"
22+
}
23+
}

0 commit comments

Comments
 (0)