
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@apify/eslint-config
Advanced tools
This repository contains a shared eslint config used across Apify. It offers several configs:
@apify/eslint-config/js@apify/eslint-config/ts@apify/eslint-config/jestFirst install the packages as development dependencies:
npm install --save-dev @apify/eslint-config eslint
Optionally, you can install typescript-eslint or eslint-plugin-jest if you intend to use TypeScript or Jest.
Add eslint.config.js file, here's an example configuration for a TypeScript project using ESM and Jest for tests:
import apifyTypescriptConfig from '@apify/eslint-config/ts';
// Optional
import apifyJestConfig from '@apify/eslint-config/jest';
export default [
...apifyTypescriptConfig,
...apifyJestConfig,
{
languageOptions: {
sourceType: 'module',
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
];
An example configuration for a JavaScript project using CommonJS without Jest:
const apifyJsConfig = require('@apify/eslint-config/js');
module.exports = [
...apifyJsConfig,
];
FAQs
ESLint configuration shared across projects in Apify.
The npm package @apify/eslint-config receives a total of 7,934 weekly downloads. As such, @apify/eslint-config popularity was classified as popular.
We found that @apify/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.