Skip to content

Commit b186055

Browse files
author
fan
committed
change api
1 parent ccbffbb commit b186055

File tree

5 files changed

+44
-41
lines changed

5 files changed

+44
-41
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- "6.11.1"

README.md

+9-21
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,15 @@ create a restartor
1212

1313
```javascript
1414
const restart = require('make-it-restart')
15-
let restartor = restart(option)
15+
let restartor = restart(command, env)
1616
```
1717

18-
`option`
18+
### parameter
1919

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.
2422

25-
NOTE: `script` and `exec`, just choose one. if you set both of them, exec will run.
26-
27-
example
23+
## example
2824

2925
script.js
3026
```javascript
@@ -38,18 +34,14 @@ setInterval(() => {
3834
index.js
3935
```javascript
4036
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()
4841

4942
setInterval(() => {
5043
restartor()
5144
}, 2000)
52-
5345
```
5446
result
5547
```bash
@@ -63,8 +55,4 @@ production
6355
2
6456
3
6557
restarting...
66-
production
67-
1
68-
2
69-
3
7058
```

index.js

+12-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
11
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
39

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+
}
1913

2014
function execFn() {
21-
child = spawnCommand(cmd, {
15+
child = spawnRun(command, {
2216
stdio: 'inherit',
23-
env: Object.assign({}, process.env, config.env)
17+
env: Object.assign({}, process.env, env)
2418
})
2519
}
2620

package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"version": "1.1.3",
44
"description": "restart script node javascript",
55
"main": "index.js",
6-
"scripts": {},
6+
"scripts": {
7+
"test": "mocha -r intelli-espower-loader ./test/index.spec.js"
8+
},
79
"repository": {
810
"type": "git",
911
"url": "git+https://github.com/anuoua/make-it-restart.git"
@@ -18,7 +20,11 @@
1820
"url": "https://github.com/anuoua/make-it-restart/issues"
1921
},
2022
"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+
},
2228
"dependencies": {
2329
"spawn-command": "0.0.2-1",
2430
"tree-kill": "^1.1.0"

test/index.spec.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
})

0 commit comments

Comments
 (0)