
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
stringjector
Advanced tools
Multi-line String Manipulation with Fluent style API for NodeJS
__ .__ ____. __
_______/ |________|__| ____ ____ | | ____ _____/ |_
/ ___/\ __\_ __ \ |/ \ / ___\ | |/ __ \_/ ___\ __\
\___ \ | | | | \/ | | \/ /_/ >\__| \ ___/\ \___| |
/____ > |__| |__| |__|___| /\___ /\________|\___ >\___ >__|
\/ \//_____/ \/ \/
npm i -s stringject
var stringJect=require('stringjector');
new stringJect('./sample.txt','this is good').replace('this is better').saveSync();
//Fluent Style
new stringJect('./sample.txt','this is bad')
.before('this is better')
.after('this is worse')
.replace('confused')
.delete()
.saveSync();
//Compare existence of predicate
var e = new stringJect('./sample.txt','this is bad').find(); //returns true/false
//delete a all lines between :
new stringJect('./sample.txt','this is bad').deleteUntill('this is done').saveSync();
//INsert after 2 lines of predicate
new stringJect('./sample.txt','this is good',2).replace('this is better').saveSync();
Insert multiple lines by placing \n
new stringJect(<filePath>,<Predicate to Search>,[<Offset line numbers>])
.before(string)
.after(string)
.replace(string)
.delete([number of lines])
.deleteUntil(string)
.find()
.save(callback)
.saveSync()
new stringJect()
constructor takes a file path as first argument and keyword/predicate to search for as seond argument. This return a stringJect object, which can be used to chain other methods upon. This optionally takes a third parameter(Number) which is no. of lines to offset.
FAQs
multi-line string manipulation with Fluent style API
We found that stringjector 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.