Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
pgparser
is basically just lib_pgquery ported to Javascript using Emscripten, with a tiny bit of glue! It is a direct port of PostgreSQL's query parser. The output format is a JSON representation of the parse tree.
Note that this is very similar to pg-query-parser. It has the advantage of being plain JS, so it should run fine in browsers (although it's quite large). The drawback of this package is that I haven't implemented a way to transform the parse tree back into SQL (yet!).
Currently, pgparser
simply parses queries into a parse tree. It returns a Promise when invoked:
const pgparser = require('pgparser');
let sql = `
SELECT
id,
first_name
FROM
users
`;
pgparser.parse(sql).then((parse_tree) => {
console.log(parse_tree);
}, (error) => {
console.warn(`${error.message} near character ${error.cursorpos}`);
});
The parse tree for the sample query is below:
[
{
"SelectStmt": {
"targetList": [
{
"ResTarget": {
"val": {
"ColumnRef": {
"fields": [
{
"String": {
"str": "id"
}
}
],
"location": 19
}
},
"location": 19
}
},
{
"ResTarget": {
"val": {
"ColumnRef": {
"fields": [
{
"String": {
"str": "first_name"
}
}
],
"location": 31
}
},
"location": 31
}
}
],
"fromClause": [
{
"RangeVar": {
"relname": "users",
"inhOpt": 2,
"relpersistence": "p",
"location": 59
}
}
],
"op": 0
}
}
]
FAQs
Parse PostgreSQL statements in plain Javascript
We found that pgparser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.