
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.
epubconverter
Advanced tools
A Node.js script for converting PDF files to EPUB format using the ebook-convert tool from Calibre.
Before using this script, you need to have the ebook-convert
tool installed on your machine. You can download the latest version of Calibre, which includes the ebook-convert
tool, from the Calibre website.
Once you have ebook-convert
installed, you can install this script using npm:
npm install -g epubconverter
After installation, you can use the epubconverter
command from the terminal to convert PDF files to EPUB format.
epubconverter --target="./path/to/pdf/files" --output="./path/to/output/directory"
--target
(required): The path to the directory containing the PDF files you want to convert.--output
(optional): The path to the output directory where the converted EPUB files will be saved. If not specified, the converted files will be saved in the target directory.epubconverter --target="./pdfs" --output="./epubs"
This will convert all the PDF files in the ./pdfs directory and save the resulting EPUB files in the ./epubs directory
You can also use this script programmatically in your Node.js projects.
const EpubConverter = require('epubconverter');
const converter = new EpubConverter(
'/path/to/pdf/files',
'/path/to/output/directory',
);
// convert all the PDF files in the target directory to EPUB format
converter.convert().finally(() => {
console.log('All done!');
});
The convert method returns a Promise that resolves when all the conversions have completed.
ebook-convert
tool from CalibreThis project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Epub converter
We found that epubconverter demonstrated a healthy version release cadence and project activity because the last version was released less than 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.