
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
socialsignals
Advanced tools
Enables easy access to the social media data for specific URLs from Facebook, Twitter and Google+
This module enables easy access to the social media metrics publicly provided by
Getting facebook like counts with nodejs is easier than ever.
npm install socialsignals
Find this package at:
Fetches the facebook data for url
.
url
The url to fetch Facebook social signals forcallback(err, data)
A callback which is called after the operation is complete{
total_count: 19109,
like_count: 4756,
comment_count: 4589,
share_count: 9764,
click_count: 1004
}
var social = require('socialsignals')
social.facebook('https://github.com/', function(err, signals){
console.log(signals)
})
Fetches the Twitter data for url
.
url
The url to fetch Twitter social signals forcallback(err, data)
A callback which is called after the operation is complete{
count: 44336
}
var social = require('socialsignals')
social.twitter('https://github.com/', function(err, signals){
console.log(signals)
})
Fetches the Google+ data for url
.
url
The url to fetch Google+ social signals forcallback(err, data)
A callback which is called after the operation is complete{
count: 5498
}
var social = require('socialsignals')
social.googleplus('https://github.com/', function(err, signals){
console.log(signals)
})
Created by Justus Blümer
License: MIT
FAQs
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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.