Socket
Socket
Sign inDemoInstall

babel-plugin-isotropy-keyvaluedb

Package Overview
Dependencies
6
Maintainers
4
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-isotropy-keyvaluedb

Babel plugin for transforming to lib-keyvaluedb


Version published
Weekly downloads
3
increased by50%
Maintainers
4
Install size
3.58 MB
Created
Weekly downloads
 

Readme

Source

Isotropy Babel Plugin for Key-Value-DB

This module is a babel plugin that transpiles array operations into corresponding kv-db operations. It uses isotropy-ast-analyzer-keyvaluedb for AST analysis.

This is part of the isotropy framework (www.isotropy.org).

Include the plugin in .babelrc file.

Plugin configuration:

plugins: [
  [
    "transform-to-isotropy-keyvalueb",
    {
      projects: [
        {
          dir: "dist/test",
          modules: [
            {
              source: "fixtures/my-db",
              locations: [
                { name: "todos", connStr: "redis://127.0.0.1:6379" }
              ]
            }
          ]
        }
      ]
    }
  ]
]

projects:
dir: Specify the root of the project.
modules:
source: Points to the local db file.
locations:
name: The name used to access the connStr specified alongside.
connStr: The connection string used when the actual database operations take place.

Example:

import myDb from "./my-db";

async function getTodos() {
  // return all keyvalue pairs in "redis://127.0.0.1:6379"
  return myDb.todos
}

FAQs

Last updated on 29 Oct 2017

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