caoge c760052ff9 机车状态修改 | 8 months ago | |
---|---|---|
.. | ||
.npmignore | 8 months ago | |
.travis.yml | 8 months ago | |
LICENSE | 8 months ago | |
README.md | 8 months ago | |
index.js | 8 months ago | |
package.json | 8 months ago | |
test.js | 8 months ago |
Parse and stringify mdns service types
npm install multicast-dns-service-types
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
MIT