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.
Minimalist dotenv-like parser for the browser.
Pronounced "dee-doh-neh".
This zero-dependency library is a minimalist dotenv-like parser. It intentionally does not perform validation and is simply designed to extract key-value pairs from a given string. The parse
function returns an array of objects with the following properties:
key
: The key of the variable.value
: The value of the variable. Multiline values are supported.duplicate
: Whether the key is duplicated or not.DB_HOST=localhost
DB_PORT="5432"
DB_USER=myuser
DB_USER=myuser2 # Duplicate keys are parsed but marked as duplicates
Output
[
{
"duplicate": false,
"key": "DB_HOST",
"value": "localhost"
},
{
"duplicate": false,
"key": "DB_PORT",
"value": "5432"
},
{
"duplicate": false,
"key": "DB_USER",
"value": "myuser"
},
{
"duplicate": true,
"key": "DB_USER",
"value": "myuser2"
}
]
If the provided text does not contain any key-value pairs, an empty array is returned.
npm i didone
parse
import { parse } from "didone";
const values = parse(
`
DB_HOST=localhost
DB_PORT="5432" # Quoted values
DB_USER=myuser
`
);
serialize
import { serialize } from "didone";
const text = serialize([
{
duplicate: false,
key: "FOO",
value: "bar",
},
]);
console.log(text); // "FOO=bar"
Set removeDuplicates
to true
to remove duplicate keys.
serialize(values, {
removeDuplicates: true,
});
0.3.2 - 2024-02-08
FAQs
Minimalist dotenv-like parser for the browser
The npm package didone receives a total of 0 weekly downloads. As such, didone popularity was classified as not popular.
We found that didone demonstrated a healthy version release cadence and project activity because the last version was released less than 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.