Do you know a fast and simple way to encode a Javascript Object into a string that I can pass via a GET Request?
string
GET
No jQuery, no
jQuery
const querystring = require('querystring') const obj = { foo: 'bar', baz: 'tor' } let result = querystring.stringify(obj) // foo=bar&baz=tor
Reference: https://nodejs.org/api/querystring.html