File tree Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Vue.js API in the Terminal
4
4
5
+ ###### screenshot
6
+ <img
7
+ src="https://github.com/p-adams/vue-help/blob/master/assets/screen-shot.png "
8
+ height="400" width="800"/>
9
+
10
+
5
11
#### Motivation
6
12
13
+ vue-help was created to facilitate access to all of Vue's API without the need for a browser or internet connection.
14
+
15
+
7
16
#### Usage
8
17
9
- #### Inspiration
18
+ ##### Install
10
19
11
- ###### screenshot
12
- <img
13
- src="https://github.com/p-adams/vue-help/blob/master/assets/screen-shot.png "
14
- height="400" width="800"/>
20
+ ` npm install -g vue-help `
21
+
22
+
23
+ ##### Start CLI
24
+
25
+ ` npm vue-help `
26
+
27
+ ##### Enter API name at the prompt
28
+
29
+ For example, `vue
30
+
31
+
32
+ #### Inspiration
Original file line number Diff line number Diff line change 4
4
"description" : " Vue.js API in the terminal" ,
5
5
"main" : " vue-help.js" ,
6
6
"scripts" : {
7
- "vue-help" : " node vue-help.js" ,
7
+ // "vue-help": "node vue-help.js",
8
8
"test" : " echo \" Error: no test specified\" && exit 1"
9
9
},
10
10
"repository" : {
11
11
"type" : " git" ,
12
12
"url" : " git+https://github.com/p-adams/vue-help.git"
13
13
},
14
+ "bin" :{
15
+ "vue-help" : " ./vue-help.js"
16
+ },
17
+ "preferGlobal" : true ,
14
18
"author" : " Paul Adams" ,
15
19
"license" : " ISC" ,
16
20
"bugs" : {
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env node
1
2
const V = require ( 'vorpal' ) ( )
2
3
const figlet = require ( 'figlet' )
3
4
const LGC = require ( './logfunctions/logglobalconfig' )
You can’t perform that action at this time.
0 commit comments