dhcp2
v1.0.0
Published
dhcp client and server in nodejs
Downloads
2
Readme
dhcp2
dhcp client and server in nodejs
Installation
$ npm i dhcp2
Example
const dhcp = require('dhcp2');
const server = dhcp.createServer(function(request, response){
console.log(request);
}).listen();
Contributing
- Fork this Repo first
- Clone your Repo
- Install dependencies by
$ npm install
- Checkout a feature branch
- Feel free to add your features
- Make sure your features are fully tested
- Publish your local branch, Open a pull request
- Enjoy hacking <3