New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

planetscale-node

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

planetscale-node

PlanetScale Database Client

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
20
decreased by-39.39%
Maintainers
1
Weekly downloads
 
Created
Source

planetscale-node

This is a very basic (v0.0.1) JavaScript client for connecting to PlanetScale.

Setup

This code uses the PlanetScale API to provision a TLS certificate, and then connects to the database. It uses Service Tokens for authentication, so you'll need to create one for the app:

~> pscale service-token create
  NAME           TOKEN
 -------------- ------------------------------------------
  nyprhd2z6bd3   [REDACTED]

~> pscale service-token add-access nyprhd2z6bd3 connect_production_branch --database [YOUR DB]
  DATABASE   ACCESSES
 ---------- ---------------------------
  [YOUR DB]       connect_production_branch

Once you have this, set the following environment variables in your application:

export PSDB_TOKEN='[REDACTED]'
export PSDB_TOKEN_NAME='nyprhd2z6bd3'
export PSDB_DB_NAME='[YOUR ORG]/[YOUR DB NAME]'

Then, you can use it:

const db = require('psdb-node');
conn = new db('main');
let [rows, fields] = await conn.query('SELECT * FROM reminders')

FAQs

Package last updated on 01 Jun 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc