I'm confused as to how to install the proper UDP package in node.js.
When I try
npm install dgram
I get an error message saying package not available.
So is UDP support 'builtin' to the default node.js install ?
I'm confused as to how to install the proper UDP package in node.js.
When I try
npm install dgram
I get an error message saying package not available.
So is UDP support 'builtin' to the default node.js install ?
dgram
is built into the API of node. Just require away.
var dgram = require('dgram');
Documentation.