
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
js-ncoreparser
Advanced tools
Node.js client for ncore.pro — search, download, rss feed, etc.
Heads-up: this is an unofficial client. Site HTML may change :) I try to keep up but no promises.
npm i js-ncoreparser
import { Client, SearchParamType, ParamSort, ParamSeq } from 'js-ncoreparser';
(async () => {
const client = new Client();
await client.login('username', 'password');
const result = await client.search(
'',
SearchParamType.HD_HUN,
undefined,
ParamSort.SEEDERS,
ParamSeq.DECREASING,
);
console.log(result.torrents[0].get('title'));
await client.logout();
})();
.env.example to .env and fill in:
NCORE_USERNAMENCORE_PASSWORDRSS_URL.env in your app, npm i dotenv and call:
import 'dotenv/config';
Client.login(username, password) — creates a sesion (cookies kept internally)Client.search(pattern, type?, where?, sortBy?, sortOrder?, page?) → { torrents, numOfPages }Client.getTorrent(id, extraParams?) → TorrentClient.getByRss(url) → AsyncGenerator<Torrent>Client.getByActivity() → Promise<Torrent[]>Client.getRecommended(type?) → AsyncGenerator<Torrent>Client.download(torrent, path, override?) → saves .torrent fileClient.logout() — clears cookies, ends sesionTorrent goodies:
torrent.get('title'|'size'|'download'|'url'|...)Also exposed enums and helpers: SearchParamType, SearchParamWhere, ParamSort, ParamSeq, Size, getTorrentPageUrl.
MIT
FAQs
Unofficial ncore.pro client for Node.js
The npm package js-ncoreparser receives a total of 2 weekly downloads. As such, js-ncoreparser popularity was classified as not popular.
We found that js-ncoreparser 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
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.