Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glaszig/node-dhcpd
A DHCP (server) implementation purely written in JavaScript with node.js
https://github.com/glaszig/node-dhcpd
Last synced: about 2 months ago
JSON representation
A DHCP (server) implementation purely written in JavaScript with node.js
- Host: GitHub
- URL: https://github.com/glaszig/node-dhcpd
- Owner: glaszig
- Archived: true
- Created: 2013-02-05T17:22:22.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2021-09-09T00:33:21.000Z (over 3 years ago)
- Last Synced: 2023-03-10T23:24:17.348Z (almost 2 years ago)
- Language: JavaScript
- Size: 82 KB
- Stars: 40
- Watchers: 3
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> **ARCHIVED**
> activity on this library has stalled for quite some time and i won't update it any further. for other/up-to-date/better implementations have a look at [infusion/node-dhcp](https://github.com/infusion/node-dhcp) or [konobi/node-dhcpjs](https://github.com/konobi/node-dhcpjs) and [apaprocki/node-dhcpjs](https://github.com/apaprocki/node-dhcpjs).# Node.js DHCP server
A DHCP (server) implementation purely written in JavaScript.
## Requirements
node.js 0.8.x
## Installation
Clone this into your `node_modules` folder.
## Usage
```js
var dhcpd = require('node-dhcpd');
var server = new dhcpd('udp4', { broadcast: '192.168.0.255' });
```For a real-world example have a look at [@konobi's forge](https://github.com/konobi/forge/).
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request# License
Published under the [MIT license](http://opensource.org/licenses/MIT).