Coder Social home page Coder Social logo

redact_json's Introduction

Redact JSON

Super small Deno library & CLI to redact JSON. Takes input over stdin, outputs over stdout. Doesn't require any permissions.

deno install -qfn redact https://deno.land/x/redact_json/cli.ts

Using the CLI

The CLI can output some instructions, along with examples.

redact --help
POSIX Shell (macOS and Linux)

This sets the script's stdin to the input file, and stdout to the output file.

redact < raw.json > redacted.json
PowerShell (Windows)

In PowerShell, you have to use a cmdlet to read the file and pipe it to the script.

Get-Content raw.json | redact > redacted.json

Using the library

There's also a simple example that shows you the input and output.

deno run https://deno.land/x/redact_json/example.ts

Here's a simple example that's equivalent to the CLI examples above.

./raw.json is read, redacted, and written to ./redacted.json

redact is pure, and fully typed. It takes a JSONValue and outputs a JSONValue. It won't mutate the input value, but for various reasons, that can't be enforced through the type system (yet).

JSON.parse returns JSONFile, so that can help you with adding types to your variables.

import { JSONFile, redact } from "https://deno.land/x/redact_json/mod.ts";

const text = await Deno.readTextFile("raw.json");
const json = JSON.parse(text) as JSONFile;

const redacted = redact(json);

const output = JSON.stringify(redacted);
await Deno.writeTextFile("redacted.json", output);

redact_json's People

Contributors

clo4 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.