how to convert query params to object in node js code example

Example 1: javascript object to params string

var queryString = Object.keys(params).map(key => key + '=' + params[key]).join('&');

Example 2: string to query string javascript

serialize = function(obj) {
  var str = [];
  for (var p in obj)
    if (obj.hasOwnProperty(p)) {
      str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
    }
  return str.join("&");
}

console.log(serialize({
  foo: "hi there",
  bar: "100%"
}));
// foo=hi%20there&bar=100%25