Compare commits
No commits in common. "master" and "0.0.1" have entirely different histories.
12
Readme.md
12
Readme.md
|
|
@ -3,17 +3,7 @@
|
||||||
# bash-ip
|
# bash-ip
|
||||||
> `bash-ip` 类似于linux下的简单版的ip命令工具. 目前只实现了几个用法, 后续会慢慢完善。
|
> `bash-ip` 类似于linux下的简单版的ip命令工具. 目前只实现了几个用法, 后续会慢慢完善。
|
||||||
|
|
||||||
|
## versions
|
||||||
## 安装
|
|
||||||
```bash
|
|
||||||
npm i bash-ip -g
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 版本更新信息
|
|
||||||
- 0.0.2 (2018/05/15)
|
|
||||||
* 删除多余的测试模块
|
|
||||||
|
|
||||||
- 0.0.1 (2018/05/15)
|
- 0.0.1 (2018/05/15)
|
||||||
* 发布0.0.1版
|
* 发布0.0.1版
|
||||||
|
|
|
||||||
1
index.js
1
index.js
|
|
@ -3,6 +3,7 @@
|
||||||
require('es.shim')
|
require('es.shim')
|
||||||
const os = require('os')
|
const os = require('os')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
const pg = require('progress')
|
||||||
const cp = require('child_process')
|
const cp = require('child_process')
|
||||||
const chalk = require('chalk')
|
const chalk = require('chalk')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bash-ip",
|
"name": "bash-ip",
|
||||||
"version": "0.0.3",
|
"version": "0.0.1",
|
||||||
"description": "类似于linux下的简单版的ip命令工具",
|
"description": "类似于linux下的简单版的ip命令工具",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"keywords": ["ip", "iproute2"],
|
"keywords": ["ip", "iproute2"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"es.shim": "^1.0.1",
|
"es.shim": "0.0.2",
|
||||||
"chalk": "^2.4.1"
|
"chalk": "^2.4.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue