Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
grunt-sql-bakery
Advanced tools
Bakes out json from sql
This plugin requires Grunt.
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-sql-bakery --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-sql-bakery');
In your project's Gruntfile, add a section named sql_bakery
to the data object passed into grunt.initConfig()
. The connection object includes the connection information specific to your database. Here is an example of a MySQL connection:
grunt.initConfig({
sql: grunt.file.readJSON('config/sql.json'),
sql_bakery: {
db: {
options: {
client: '<%= sql.client %>', // defaults to mysql
tables: '<%= sql.tables %>',
output_path: '<%= sql.output_path %>', // defaults to './data'
charset: '<%= sql.charset %>', // defaults to 'utf8'
connection: {
host: '<%= sql.host %>',
database: '<%= sql.db %>',
user: '<%= sql.user %>',
password: '<%= sql.pw %>',
}
}
}
},
})
To bake out your json files, run grunt sql_bakery
.
All of the options passed in will be pulled from the config/sql.json
file, where your database credentials are stored. This config file should be included in your .gitignore
so you don't publish your db credentials. There's an example of what this file should look like in the config folder called sql.json.example
.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
(Nothing yet)
Copyright (c) 2015 Ashlyn Still. Licensed under the MIT license.
FAQs
Bakes out json from sql
We found that grunt-sql-bakery demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.