xtf e538decb69 药品分类 11 tháng trước cách đây
..
.npmignore e538decb69 药品分类 11 tháng trước cách đây
.travis.yml e538decb69 药品分类 11 tháng trước cách đây
LICENSE e538decb69 药品分类 11 tháng trước cách đây
README.md e538decb69 药品分类 11 tháng trước cách đây
index.js e538decb69 药品分类 11 tháng trước cách đây
package.json e538decb69 药品分类 11 tháng trước cách đây
test.js e538decb69 药品分类 11 tháng trước cách đây

README.md

multicast-dns-service-types

Parse and stringify mdns service types

npm install multicast-dns-service-types

build status

Usage

var types = require('multicast-dns-service-types')

console.log(types.stringify({name: 'http', protocol: 'tcp', subtypes: ['sub1', 'sub2']})) // _http._tcp._sub1._sub2
console.log(types.parse('_http._tcp._sub1._sub2')) // {name: 'http', protocol: 'tcp', subtypes: ['sub1', 'sub2']}

The following shorthands also exist

types.stringify(name, protocol, subtypes)
types.tcp(name, subtypes) // set protocol to tcp
types.udp(name, subtypes) // set protocol to udp

License

MIT