
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
key-value-file
Advanced tools
This is a simple key/value file parser/writer. Its initial purpose is to
handle parsing of .env files.
The main purpose is to be able to alter .env files programmatically
/* my-environment.env
key1 = value1
key2 = 2
key3= Some value with spaces
*/
import { parseFile } from 'key-value-file'
async function myFunc() {
const kv = await parseFile('my-environment.env')
kv.rename('key1', 'keyOne')
.set('key2', 4)
.delete('key3')
.set('key4', 'new value')
.writeFile()
}
This will write the following to my-environment.env:
keyOne = value1
key2 = 4
key4=new value
KeyValueFile.create('file.ext') loads the file if it exists. Otherwise the
file will be created when KeyValueFile.writeFile() is called.
import { KeyValueFile } from 'key-value-file'
const file = KeyValueFile.create('.env')
file
.set('key1', 'Value 1')
.set('key2', 'Value 2')
.addNewline()
.addComment('Only used in test environment')
.set('test1', 1)
.set('test2', 2)
.writeFile()
This will create a file with the following content:
key1=Value 1
key2=Value 2
# Only used in test environment
test1=1
test2=2
async parseFile(path: PathLike): KeyValueFile
KeyValueFile
path
Property that returns the file path of the key/value file.
set(key: string, value: string | number): this
Set the value of key to value. If key doesn't exist it is created.
get(key: string): string | undefined
Returns the value of key, or undefined if the key doesn't exist.
delete(key: string): this
Delete the key key and its value.
rename(key: string, newName: string): this
Rename the key key to newName.
async writeFile(normalizeWhitespace = false): this
Write the current data to the path of KeyValueFile. If
normalizeWhitespace is true all excessive whitespace will be removed.
toString(normalizeWhitespace = false): string
Convert the data to a key/value string. If normalizeWhitespace is
true all excessive whitespace will be removed.
Handle missing/empty values (fixed)
Things will probably break right now if something like key= occurs.
Documentation Oh, how we like that.
FAQs
A simple key/value file parser/writer
The npm package key-value-file receives a total of 147 weekly downloads. As such, key-value-file popularity was classified as not popular.
We found that key-value-file 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.