npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bcc-code/db_masker

v0.3.1

Published

Db Masker is a library for masking database data by performing updates on the data and optionally removing it. The updates and removals are specified in yaml configuration files.

Downloads

8

Readme

Db Masker

Db Masker is a library for masking database data by performing updates on the data and optionally removing it. The updates and removals are specified in yaml configuration files.

Supports

  • Postgres
  • MySQL / MySQL2
  • SQLite

Install the correspond client library to use the database.

Configuring Db Masker

To configure Db Masker, you'll need to set up the following:

The database connection information in the db-masker-config.yaml file.

tasksDir: "./tasks" # relative to the config file
client: "pg"
connection:
  host: "127.0.0.1"
  user: "user"
  password: "password"
  database: "database"

Alternatively, a js file can be used to configure the database connection. The js file should export a function that returns the configuration object. The function will be passed the environment variable NODE_ENV as an argument. This allows you to configure the database connection based on the environment.

module.exports = (env) => {
  return {
    tasksDir: "./tasks",
    client: "pg", // or mysql or sqlite3
    connection: () => {
      // return connection settings
    },
  }
}

The data updates and removals in one or more yaml files in the tasks directory. Each file corresponds to a namespace, and the data updates and removals are specified by table.

Here's an example of a yaml file:

[namespace]: # A single namespace per config file
  [table]: # The exact table name on which to take actions (Can have multiple tables per namespace)
    id: "column_name" #(optional default: id) The column name that is the primary key for the table
    delete: true #(optional) remove all data from the table ( can also be a raw where clause eg. "column_name2 > 100" )
    updates:
      - column: "column_name"
        fn: "name.firstName" # use the faker function name.firstName to update the column
      - column: "column_name2"
        fn: "mersenne.rand" # use the faker function mersenne.rand to update the column
        args: [100, 1] # pass in two arguments to the function, the maximum and minimum numbers
      - column: "column_name3"
        fn: "raw" # use the raw sql to update the column
        query: "CONCAT(column_name, ' ', column_name2)"

https://fakerjs.dev/api/ has a list of all the faker functions that can be used. REMEMBER THE NAMESPACE IS REQUIRED, eg. internet.email

Usage

To run Db Masker, run the following command in your terminal:

npx db_masker db-masker-config.yaml

This will mask the data in your database according to the specifications in the yaml configuration files. The output will be logged to the console, and the process will exit with a status code of 0 on success or 1 on failure.