
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.
@navanatech/react-app
Advanced tools
@navanatech/react-appShareable configs for Navana Tech's React setup. Includes the following:
Note that because changes to these configs may bring breaking changes to your app, each time packages are updated to latest, we will increment one major version. Only in case of issues fixed by updating a minor version of a dependency will this package publish minor/patch updates.
# Using npm
npm install -D @navanatech/react-app vite typescript postcss eslint prettier
# using yarn
yarn add -D @navanatech/react-app vite typescript postcss eslint prettier
# using pnpm (preferred)
pnpm add @navanatech/react-app vite typescript postcss eslint prettier
Add this to your package.json:
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"pretty": "pretty-quick --pattern '**/*.*(js|jsx|ts|tsx)'",
"lint": "eslint --ext .js --ext jsx --ext .ts --ext tsx ./src"
},
"prettier": "@navanatech/react-app/.prettierrc.json",
"eslintConfig": {
"extends": "react-app"
},
Add the following config files:
import { defineConfig } from "vite";
import viteConfig from "@navanatech/react-app/viteConfig";
import { dependencies } from "./package.json";
const manualChunks = {
core: ["react", "react-router-dom"],
other: Object.keys(dependencies).filter(key => !["react", "react-router-dom"].includes(key)),
};
export default defineConfig(viteConfig(manualChunks));
{
"extends": "@navanatech/react-app/tsconfig.json",
"compilerOptions": {
"types": ["vite/client", "@navanatech/react-app"],
},
"include": ["./src", "./vite.config.ts"]
}
module.exports = require("@navanatech/react-app/postcss.config");
FAQs
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.