🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

stringjector

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stringjector

multi-line string manipulation with Fluent style API

1.0.1
latest
Source
npm
Version published
Maintainers
1
Created
Source

stringJect

Multi-line String Manipulation with Fluent style API for NodeJS

npm version

          __         .__                    ____.              __   
  _______/  |________|__| ____    ____     |    | ____   _____/  |_ 
 /  ___/\   __\_  __ \  |/    \  / ___\    |    |/ __ \_/ ___\   __\
 \___ \  |  |  |  | \/  |   |  \/ /_/  >\__|    \  ___/\  \___|  |  
/____  > |__|  |__|  |__|___|  /\___  /\________|\___  >\___  >__|  
     \/                      \//_____/               \/     \/      

Install

npm i -s stringject

Usage

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

Reference

  • 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.

License

MIT

Keywords

string

FAQs

Package last updated on 10 Mar 2017

Did you know?

Socket

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.

Install

Related posts