
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
This module provides calls to the Bitly API for Nodejs. For more information on the API request and responses visit the Bitly API docs
node-bitly
is programmed with TypeScript
but is compiled to JavaScript and supports node 6, 8, 10
.
To install via NPM type the following: npm install bitly
You can also install via git by cloning: git clone https://github.com/tanepiper/node-bitly.git /path/to/bitly
Note: This is the Version 6 API
This library uses the API provided by bitly and requires an OAuth token to use. To get your access token, visit OAuth Apps (under Generic Access Token)
See http://dev.bitly.com for format of returned objects from the API
To see the available libary APIs, you can view the API Documentation
import { BitlyClient } from 'bitly';
const bitly = new BitlyClient('<accessToken>', {});
try {
return await bitly.shorten(uri);
} catch(e) {
throw e;
}
const { BitlyClient } = require('bitly');
const bitly = new BitlyClient('<accessToken>', {});
try {
const data = await bitly.shorten(uri);
} catch(e) {
throw e;
}
return data;
If you are not using node 8
then you can still use the library with Promise
values:
const BitlyClient = require('bitly');
const bitly = BitlyClient('<accessToken>');
bitly.shorten('https://github.com/tanepiper/node-bitly')
.then(function(result) {
console.log(result);
})
.catch(function(error) {
console.error(error);
});
You can also do raw requests to any Bitly endpoint. With this you need to pass the access token to the method
const BitlyClient = require('bitly');
const bitly = new BitlyClient('<accessToken>');
try {
return await bitly.bitlyRequest('link/referrers_by_domain', {
link: 'https://github.com/tanepiper/node-bitly',
unit: 'hour',
timezone: 'Europe/Amsterdam'
});
} catch(e) {
throw e;
}
To run tests type npm test
. Please note one test will fail if you use your own API key, please update the string accordingly.
FAQs
A Bit.ly API library for Node.JS
The npm package bitly receives a total of 6,011 weekly downloads. As such, bitly popularity was classified as popular.
We found that bitly 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.