Socket
Book a DemoInstallSign in
Socket

screwdriver-datastore-sequelize

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

screwdriver-datastore-sequelize

Datastore implementation for mysql, postgres, sqlite3, and mssql

latest
Source
npmnpm
Version
10.0.1
Version published
Maintainers
1
Created
Source

Datastore Sequelize

Version Downloads Build Status Open Issues License

Datastore implementation for mysql, postgres, sqlite3, and mssql

Usage

npm install screwdriver-datastore-sequelize

Initialization

This module takes the same input as the sequelize class with the exception of database, username, and password. Those should be combined into the overall config object.

const Sequelize = require('screwdriver-datastore-sequelize');
const datastore = new Sequelize();

Define a specific region and credentials to interact with

const Sequelize = require('screwdriver-datastore-sequelize');
const pcGamerDatastore = new Sequelize({
    dialect: 'postgres',
    database: 'banana',
    username: 'coconut',
    password: 'm0nK3Ys&'
});

Methods

See base class for more information.

Testing

npm test

License

Code licensed under the BSD 3-Clause license. See LICENSE file for terms.

Keywords

screwdriver

FAQs

Package last updated on 26 May 2025

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