
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
wealthsync-pro
Advanced tools
Welcome to WealthSync Pro, an npm package designed for seamless finance aggregation. Say goodbye to the challenges of managing API keys, wading through extensive documentation, and dealing with endless subscriptions. WealthSync Pro provides unlimited, streamlined, and hassle-free access to real-time financial data without the need for API keys.
Install WealthSync Pro using npm:
npm install wealthsync-pro
Here’s how to use WealthSync Pro to access different types of financial data:
const { crypto, forex, stocks } = require('wealthsync-pro');
// Get real-time data on top 100 cryptocurrencies
const top100 = async() => {
await crypto.getTop100CryptoCoinsData()
.then(data => console.log(data))
.catch(err => console.error(err));
}
// Get detailed information for a specific cryptocurrency
const info = async() => {
await crypto.searchCoins('BTC')
.then(coins => {
const coinId = coins[0].uuid;
return crypto.getCoinData(coinId);
})
.then(data => console.log(data))
.catch(err => console.error(err));
}
// Get real-time conversion rates between selected countries
const rates = async() => {
forex.getExchangeRates('USD', 'EUR')
.then(data => console.log(data))
.catch(err => console.error(err));
}
// Get real-time information about a specific stock
const stockdata = async() => {
stocks.getStockData('AAPL')
.then(data => console.log(data))
.catch(err => console.error(err));
}
This package reverse engineers proprietary finance APIs. Use it at your own risk. The authors are not responsible for any misuse or legal issues that may arise from using this package.
Thank you for using WealthSync Pro! We hope you find it as exciting and useful as we do.
FAQs
An NPM package that aggregates financial data from various APIs
We found that wealthsync-pro 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.