Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 751 Bytes

README.md

File metadata and controls

20 lines (19 loc) · 751 Bytes

example workflow

Usage:

# to read json in rusty way
jsoneer show example.json 
# to replace every value with "placeholder"
jsoneer set example.json -m u placeholder 
# to replace with null,false,true,[],{} respectfully 
jsoneer set example.json -m [n|f|t|a|o] 

Roadmap:

  • Replace all values in the json by 'null','false','true', '{}', '[]' and user-specified
  • Support filenames as input
  • Move to "clap" for parsing
  • Raplce values one-by-one, replace with 'shifting', or by index IN PROGRESS
  • Generate payloads based on the ruleset
  • Host web version
  • Create simple GUI/TUI
  • Implemet itegration with some QA tooling