Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@infinitaslearning/marv-mssql-driver
Advanced tools
A SQL Server driver for marv
"If @cressie176 can do it, anyone can." Anon, 2019
migrations/
|- 001.create-table.sql
|- 002.create-another-table.sql
const marv = require('marv')
const mssqlDriver = require('marv-mssql-driver')
const directory = path.join(process.cwd(), 'migrations' )
const driver = mssqlDriver({
table: 'db_migrations', // defaults to 'migrations'
connection: { // the connection sub document is passed directly to mssql
host: 'localhost',
port: 1433,
database: 'dbo',
user: 'sa',
password: 'Marv@234!',
options: {
encrypt: true // Use this if you're on Windows Azure
}
}
})
marv.scan(directory, (err, migrations) => {
if (err) throw err
marv.migrate(migrations, driver, (err) => {
if (err) throw err
})
})
The password is: Marv@234!
npm install # or yarn
npm run docker
npm test
FAQs
A SQL Server marv driver implementation
We found that @infinitaslearning/marv-mssql-driver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.