String Decoder Module in Node.js STRING DECODER: String decoder module in node.js is used to provide an API for decoding buffer object into strings. Also, this decoding is performed in a manner that UTF-8 and UTF-16 characters multibyte coding is preserved. The user might query string module in the following way: var sd = require('string_decoder').StringDecoder; [...]The post STRING DECODER MODULE IN NODE.JS appeared first on Pro-Tek Blog.