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.
arxiv-to-xml
Advanced tools
Generate XML representation of an arXiv paper using
latexml
.
The following is required if running on a host machine. Instead you can use the Docker image - instructions below.
Install texlive
sudo apt update
sudo apt install -y texlive-full
Install latexml
mkdir -p /usr/src/latexml
cd /usr/src/latexml
export LATEXML_COMMIT=9bccfbf633855a2cf9a1c5f03c3ce85c46be4717
curl -L https://github.com/brucemiller/LaTeXML/tarball/$LATEXML_COMMIT | tar --strip-components 1 -zxf - \
&& perl Makefile.PL \
&& make \
&& make install
# Pull image
docker pull bencevans/arxiv-to-xml
# Get your XML
docker run --rm bencevans/arxiv-to-xml [arxiv id]
# Clone repo
git clone https://github.com/bencevans/arxiv-to-xml.git
cd arxiv-to-xml
# Build image
docker build -t arxiv-to-xml .
# Get your XML
docker run arxiv-to-xml [arxiv id]
Ensure you've installed a latex suite and latexml.
# Install from npm
npm install --global arxiv-to-xml
# Get your XML
arxiv-to-xml [arxiv id]
Ensure you've installed a latex suite and latexml.
# Install from npm
npm install --save arxiv-to-xml
const arxivToXML = require('arxiv-to-xml')
arxivToXML(arxivId)
.then(xml => console.log(xml))
.catch(err => {
console.error(err)
process.exit(1)
})
MIT © Ben Evans
FAQs
Generate XML representation of an arXiv paper using latexml
The npm package arxiv-to-xml receives a total of 1 weekly downloads. As such, arxiv-to-xml popularity was classified as not popular.
We found that arxiv-to-xml 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.