Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Minimalist Node.js client for programmatically trading with FXCM REST API
npm install --save fxcm
ES6 Import:
import FXCM from 'fxcm'
CommonJS:
const FXCM = require('fxcm')
const config = {
token: "PASTE_YOUR_FXCM_TOKEN_HERE",
isDemo: true
}
const fxcm = new FXCM(config)
// Get 30min historical candle data for USD/CAD. Max 50 data points (live/current candle is removed by default)
fxcm.historical({ pair: 'USD/CAD', timeframe = 'm30', datapoints = 50 })
.then((data) => {
console.log(JSON.stringify(data))
})
// Get current market data for your subscribed symbols (subscription list can be edited at tradingstation.fxcm.com)
fxcm.markets()
.then((data) => {
console.log(JSON.stringify(data))
fxcm.logout()
})
FAQs
A client to programmatically trade with FXCM REST API
The npm package fxcm receives a total of 4 weekly downloads. As such, fxcm popularity was classified as not popular.
We found that fxcm 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.