File tree 5 files changed +44
-41
lines changed
5 files changed +44
-41
lines changed Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ node_js :
3
+ - " 6.11.1"
Original file line number Diff line number Diff line change @@ -12,19 +12,15 @@ create a restartor
12
12
13
13
``` javascript
14
14
const restart = require (' make-it-restart' )
15
- let restartor = restart (option )
15
+ let restartor = restart (command, env )
16
16
```
17
17
18
- ` option `
18
+ ### parameter
19
19
20
- - ` script ` the path of js script.
21
- - ` exec ` your command.
22
- - ` initRun ` when init restartor, run it immediately or not.
23
- - ` env ` set environment variable with an object (don't use ` set ` in windows or ` export ` in linux to set environment with ` exec ` , it's useless).
20
+ - ` command ` : it supports running commands directly which in ` ./node_modules/.bin/ ` , like ` npm run ` .
21
+ - ` env ` : set environment variables with an object.
24
22
25
- NOTE: ` script ` and ` exec ` , just choose one. if you set both of them, exec will run.
26
-
27
- example
23
+ ## example
28
24
29
25
script.js
30
26
``` javascript
@@ -38,18 +34,14 @@ setInterval(() => {
38
34
index.js
39
35
``` javascript
40
36
const restart = require (' make-it-restart' )
41
- let restartor = restart ({
42
- script: ' ./script.js' ,
43
- initRun: true ,
44
- env: {
45
- NODE_ENV : ' production'
46
- }
47
- })
37
+
38
+ let restartor = restart (' node ./script.js' , { NODE_ENV : ' production' })
39
+
40
+ restartor ()
48
41
49
42
setInterval (() => {
50
43
restartor ()
51
44
}, 2000 )
52
-
53
45
```
54
46
result
55
47
``` bash
@@ -63,8 +55,4 @@ production
63
55
2
64
56
3
65
57
restarting...
66
- production
67
- 1
68
- 2
69
- 3
70
58
```
Original file line number Diff line number Diff line change 1
1
const treeKill = require ( 'tree-kill' )
2
- const spawnCommand = require ( 'spawn-command' )
2
+ const spawnRun = require ( 'spawn-run' )
3
+ /**
4
+ * @param {string } command - commands like npm run.
5
+ * @param {object } env - object of environment variables.
6
+ */
7
+ module . exports = function ( command , env ) {
8
+ let child
3
9
4
- module . exports = function ( opts ) {
5
- let config = Object . assign ( {
6
- script : undefined ,
7
- exec : undefined ,
8
- initRun : false ,
9
- env : undefined ,
10
- } , opts )
11
-
12
- if ( ! config . script && ! config . exec ) throw new Error ( 'missing options' )
13
-
14
- const cmd = config . exec || `node ${ config . script } `
15
-
16
- let child ;
17
-
18
- if ( config . initRun === true ) execFn ( )
10
+ if ( ! command || typeof command !== 'string' ) {
11
+ throw new Error ( 'Please input right command' )
12
+ }
19
13
20
14
function execFn ( ) {
21
- child = spawnCommand ( cmd , {
15
+ child = spawnRun ( command , {
22
16
stdio : 'inherit' ,
23
- env : Object . assign ( { } , process . env , config . env )
17
+ env : Object . assign ( { } , process . env , env )
24
18
} )
25
19
}
26
20
Original file line number Diff line number Diff line change 3
3
"version" : " 1.1.3" ,
4
4
"description" : " restart script node javascript" ,
5
5
"main" : " index.js" ,
6
- "scripts" : {},
6
+ "scripts" : {
7
+ "test" : " mocha -r intelli-espower-loader ./test/index.spec.js"
8
+ },
7
9
"repository" : {
8
10
"type" : " git" ,
9
11
"url" : " git+https://github.com/anuoua/make-it-restart.git"
18
20
"url" : " https://github.com/anuoua/make-it-restart/issues"
19
21
},
20
22
"homepage" : " https://github.com/anuoua/make-it-restart#readme" ,
21
- "devDependencies" : {},
23
+ "devDependencies" : {
24
+ "intelli-espower-loader" : " ^1.0.1" ,
25
+ "mocha" : " ^4.0.1" ,
26
+ "power-assert" : " ^1.4.4"
27
+ },
22
28
"dependencies" : {
23
29
"spawn-command" : " 0.0.2-1" ,
24
30
"tree-kill" : " ^1.1.0"
Original file line number Diff line number Diff line change
1
+ const assert = require ( 'assert' )
2
+ const restartor = require ( '../index' )
3
+
4
+ describe ( 'make-it-restart' , ( ) => {
5
+ it ( 'test wrong command' , ( ) => {
6
+ try {
7
+ restartor ( { } , { } )
8
+ } catch ( err ) {
9
+ assert ( err . message , 'right command needed' )
10
+ }
11
+ } )
12
+ } )
You can’t perform that action at this time.
0 commit comments