diff --git a/README.md b/README.md index 9aa115f..714d443 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ -dns-suite +dns-suite.js ======== -| **dns-suite** | [dig.js](https://git.daplie.com/Daplie/dig.js) | [digd.js](https://git.daplie.com/Daplie/digd.js) | +| **dns-suite.js** +| [dig.js](https://git.coolaj86.com/coolaj86/dig.js) +| [digd.js](https://git.coolaj86.com/coolaj86/digd.js) +| Fast, lightweight, and easy-to-extend **pure JavaScript** (ES5.1) implementation for DNS / mDNS. @@ -57,17 +60,17 @@ You can use git to install v1.x like so: ```bash # latest of v1.x -npm install 'git+https://git@git.daplie.com:Daplie/dns-suite#v1' +npm install 'git+https://git.coolaj86.com/coolaj86/dns-suite.js#v1' ``` If you want to be more specific to v1.0.x or exactly v1.0.2 you can do so like this: ``` # latest of v1.0.x -npm install 'git+https://git@git.daplie.com:Daplie/dns-suite#v1.0' +npm install 'git+https://git.coolaj86.com/coolaj86/dns-suite.js#v1.0' # exactly v1.0.2 -npm install 'git+https://git@git.daplie.com:Daplie/dns-suite#v1.0.2' +npm install 'git+https://git.coolaj86.com/coolaj86/dns-suite.js#v1.0.2' ``` Install without git @@ -104,8 +107,8 @@ dns-pack.js [out.bin] # packs a JSON DNS packet to dns-test.js # convert a packet back and forth to test reciprocity of the packer and parser ``` -For **capturing packets** you should use [`dig.js`](https://git.daplie.com/Daplie/dig.js#options) with the `--output` option. -It can capture mDNS as well. See . +For **capturing packets** you should use [`dig.js`](https://git.coolaj86.com/coolaj86/dig.js#options) with the `--output` option. +It can capture mDNS as well. See . You can also access them directly from `node_modules/dns-suite` in a project: @@ -147,11 +150,11 @@ console.log(new Uint8Array(ab)); Capturing Packets ----- -We have a command line tool for that! See [dig.js](https://git.daplie.com/Daplie/dig.js). +We have a command line tool for that! See [dig.js](https://git.coolaj86.com/coolaj86/dig.js). ```bash # Install -npm install -g 'git+https://git@git.daplie.com/Daplie/dig.js.git' +npm install -g 'git+https://git.coolaj86.com/coolaj86/dig.js.git' # Use with DNS dig.js A daplie.com --output . diff --git a/package.json b/package.json index 6ce6dda..10645e3 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ }, "repository": { "type": "git", - "url": "git@git.daplie.com:Daplie/dns-suite.git" + "url": "https://git.coolaj86.com/coolaj86/dns-suite.js.git" }, "author": "", "license": "(MIT or Apache2)", @@ -23,6 +23,6 @@ }, "dependencies": { "bluebird": "^3.5.0", - "hexdump.js": "^1.0.4" + "hexdump.js": "git+https://git.coolaj86.com/coolaj86/hexdump.js#v1.0.4" } }