Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
line-replace
Advanced tools
Replace a line in a file with passed string.
Global, for command line usage:
npm install -g line-replace
Local, for programatic usage in your project:
npm install --save line-replace
USAGE:
line-replace [file]:[line] [[string]]
EXAMPLE:
line-replace sample.txt:7 'New content for line seven.'
Passed string will replace passed line number on passed file.
If string is not provided, the line will be cleared.
const lineReplace = require('line-replace')
lineReplace({
file: 'a-file.txt',
line: 42,
text: 'Answer to the Ultimate Question of Life, the Universe, and Everything.',
addNewLine: true,
callback: ({file, line, text, replacedText}) => {}
})
addNewLine
defaults to true
, which doesn't add or remove
lines from the original document.
Setting it to false
is the equivalent of removing the passed line and appending
the passed text to the next line.
For example, with the following content:
First line.
Second line.
Third line.
Running:
lineReplace({
file: 'the-file.txt',
line: 2,
text: 'LOOK: ',
addNewLine: false,
callback: ({file, line, text, replacedText}) => {}
})
Will result in:
First line.
LOOK: Third line.
Yeah. line-replace
uses read and write streams, so it should work ok with big files.
Enjoy!
FAQs
Replace a line in a file with passed string.
The npm package line-replace receives a total of 7,032 weekly downloads. As such, line-replace popularity was classified as popular.
We found that line-replace 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.