https://github.com/lsongdev/node-dhcp
dhcp client and server in nodejs
https://github.com/lsongdev/node-dhcp
dhcp dhcp-client networking nodejs rfc2131 rfc2132
Last synced: 20 days ago
JSON representation
dhcp client and server in nodejs
- Host: GitHub
- URL: https://github.com/lsongdev/node-dhcp
- Owner: lsongdev
- License: mit
- Created: 2016-12-25T12:32:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-01-03T06:24:35.000Z (about 6 years ago)
- Last Synced: 2025-10-22T11:11:58.540Z (5 months ago)
- Topics: dhcp, dhcp-client, networking, nodejs, rfc2131, rfc2132
- Language: JavaScript
- Homepage: https://npmjs.org/dhcp2
- Size: 6.84 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## dhcp2 
> dhcp client and server in nodejs
### Installation
```bash
$ npm i dhcp2
```
### Example
```js
const dhcp = require('dhcp2');
const server = dhcp.createServer(function(request, response){
console.log(request);
}).listen();
```
### Specification
+ https://tools.ietf.org/html/rfc2131
+ https://tools.ietf.org/html/rfc2132
+ https://tools.ietf.org/html/rfc4039
+ https://tools.ietf.org/html/rfc4702
### 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
### MIT
---