Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Minimalist dotenv-like parser for the browser. Pronounced "dee-doh-neh".
This zero-dependency library is a minimalist dotenv-like parser. Given a string, it returns an array of objects with the following properties:
key
: The key of the variable.value
: The value of the variable. Multi-line 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"
}
]
npm i didone
parse
import { parse } from "didone";
const values = parse(
`
DB_HOST=localhost
DB_PORT="5432" # Quoted values
DB_USER=myuser
`
);
The default RegExp
used to validate env keys is /^[a-zA-Z_.-][a-zA-Z0-9_.-]*$/
. This means that keys must be alphanumeric but must not start with a number. However, they can start with or contain underscores, dashes, and periods.
You can customize the RegExp
via the regexEnvKey
option.
parse("...", {
regexEnvKey: /^[a-zA-Z][a-zA-Z0-9_.-]*$/,
});
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.2.0 - 2024-01-13
parseDotEnv
to parse
serialize
to serialize parsed values back to textFAQs
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.