Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Converts an object into a plain string recursively (`{a: 'foo', b: {c: {d: 'bar'}}}` to `'a=foo;b|c|d=bar'`) and vice versa.
Objekto is a small utility to convert an object into a string ({a: 'foo', b: {c: {d: 'bar'}}} to 'a=foo;b|c|d=bar') and vice versa.
npm install --save objekto
Require:
var ots = require('objekto');
var objectToString = ots.objectToString;
var stringToObject = ots.stringToObject;
var objectToString = require('objekto/ots');
var stringToObject = require('objekto/sto');
ES6:
import { objectToString, stringToObject } from 'objekto';
import objectToString from 'objekto/ots';
import stringToObject from 'objekto/sto';
Convert an object into a string or vice versa:
var obj0 = {a: 'foo'};
var str0 = 'a=foo';
console.log(objectToString(obj0) === str0); // -> true
console.log(_.isEqual(stringToObject(str0), obj0)); // -> true
var obj1 = {a: 'foo', b: 'bar'};
var str1 = 'a=foo;b=bar';
console.log(objectToString(obj1) === str1); // -> true
console.log(_.isEqual(stringToObject(str1), obj1)); // -> true
var obj2 = {
a: 'foo',
b: 'bar',
c: {
d: 'foobar'
}
};
var str2 = 'a=foo;b=bar;c|d=foobar';
console.log(objectToString(obj2) === str2); // -> true
console.log(_.isEqual(stringToObject(str2), obj2)); // -> true
Options:
var object = {
a: 'foo',
b: {
c: 'bar'
}
};
var string = 'a~foo||b.c~bar';
var options = {
keySeparator: '||',
keyValueSeparator: '~',
levelSeparator: '.'
};
console.log(objectToString(object, options) === string); // -> true
console.log(_.isEqual(stringToObject(string, options), object)); // -> true
See test cases for other examples.
npm test
You should note that on large and complex objects objectToString is about 3-4 times slower than JSON.stringify, stringToObject is about 2 times slower than JSON.parse. Run npm run benchmark
to see for yourself. I suggest to use this utils only in case you really can't afford native JSON methods.
"Objekto" is an esperanto word for 'object' (which is pretty obvious, I guess).
FAQs
Converts an object into a plain string recursively (`{a: 'foo', b: {c: {d: 'bar'}}}` to `'a=foo;b|c|d=bar'`) and vice versa.
The npm package objekto receives a total of 1 weekly downloads. As such, objekto popularity was classified as not popular.
We found that objekto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.