Socket
Socket
Sign inDemoInstall

tyranid-sanitize

Package Overview
Dependencies
118
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tyranid-sanitize

`tyranid-sanitize` is a tool for obfuscating text fields on documents in your tyranid collections using simple schema annotations.


Version published
Weekly downloads
6
decreased by-40%
Maintainers
3
Install size
5.27 MB
Created
Weekly downloads
 

Readme

Source

Tyranid Sanitize

tyranid-sanitize is a tool for obfuscating text fields on documents in your tyranid collections using simple schema annotations.

Schema Annotations

In order to mark fields to be sanitized, add the sanitize property to a field definition.

import { Tyr } from 'tyranid';

export const Blog = new Tyr.Collection({
  id: 'b00',
  name: 'blog',
  dbName: 'blogs',
  fields: {
    _id: { is: 'mongoid' },
    /**
     *  we want to obfuscate the name when the database
     *  is passed to `tyranid-sanitize`, so we mark the field
     *  with `sanitize: 'name'` to generate a random name string
     *  using faker.js.
     */
    name: { is: 'string', sanitize: 'name' },
    organizationId: { link: 'organization' }
  }
});

The sanitize (see the type definition here: ./src/sanitize.ts) property can be one of the following:

  • true: this will use the default sanitization (a random string of lorem ipsum)
  • lorem: a random sentence of lorem ipsum
  • name: a random name
  • email: a random email

Sanitizing a database

After marking properties for sanitization, use the sanitize function to create a cloned, sanitized version of the database.

import { Tyr } from 'tyranid';
import { sanitize } from 'tyranid-sanitize';

// ... after booting tyranid
await sanitize(Tyr);

Sanitization Options

The sanitize(tyr: Tyr, opts?: SanitizeOptions) function takes an optional options argument:

interface SanitizeOptions {
  /**
   * desired name of the output database
   */
  outDbName?: string;
  /**
   * number of documents to batch insert at a time
   */
  batchSize?: number;
  /**
   * verbose progress logging
   */
  verbose?: boolean;
  /**
   * sanitize each collection serially (defaults to concurrently)
   */
  serial?: boolean;
  /**
   * faker.js seed
   */
  seed?: number;
  /**
   * sanitize every string field automatically
   */
  autoSanitize?: boolean;
}

FAQs

Last updated on 02 Dec 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc