
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
bigquery-api
Advanced tools
A quick and easy to use package for Google Cloud BigQuery. bigquery-api requires node v7.6.0 or higher for ES2015 and async function support.
npm i --save bigquery-api
You can check this document to learn how to generate the service account key https://cloud.google.com/iam/docs/creating-managing-service-account-keys
const bigqueryapi = require('bigquery-api')
bigqueryapi({
projectId: process.env.projectId,
keyFilename: process.env.keyFilename,
datasetId: "myproject",
tables: [{
name: 'user',
options: {
schema: 'name:string, date:datetime'
}
},{
name: 'post',
options: {
schema: 'text:string, date:datetime'
}
}]
})
.then(async ({ bigquery, table }) => {
// insert
await table.user.insert({ name: "ahmet şimşek", date: "2018-04-01T12:34:56" })
await table.post.insert({ text: "lorem ipsum", date: "2018-04-01T12:34:52" })
// query
await bigquery.query({ query: 'SELECT * FROM myproject.user' })
})
For more information https://cloud.google.com/nodejs/docs/reference/bigquery/latest
FAQs
A quick and easy to use package for Google Cloud BigQuery.
The npm package bigquery-api receives a total of 19 weekly downloads. As such, bigquery-api popularity was classified as not popular.
We found that bigquery-api 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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.